Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/plugin/Plugin.cpp

Issue 10945039: Switch to gyp (Closed)
Patch Set: Final version Created June 21, 2013, 2:16 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/plugin/Plugin.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "PluginStdAfx.h" 1 #include "PluginStdAfx.h"
2 2
3 #include "Plugin.h" 3 #include "Plugin.h"
4 #include "../../build/AdblockPlus_i.c" 4 #ifdef _WIN64
5 #include "../../build/x64/AdblockPlus_i.c"
6 #else
7 #include "../../build/ia32/AdblockPlus_i.c"
8 #endif
5 9
6 #include "PluginClass.h" 10 #include "PluginClass.h"
7 #include "PluginClient.h" 11 #include "PluginClient.h"
8 #include "PluginSystem.h" 12 #include "PluginSystem.h"
9 #include "PluginSettings.h" 13 #include "PluginSettings.h"
10 #include "PluginMimeFilterClient.h" 14 #include "PluginMimeFilterClient.h"
11 #include "Msiquery.h" 15 #include "Msiquery.h"
12 16
13 #ifdef SUPPORT_FILTER 17 #ifdef SUPPORT_FILTER
14 #include "PluginFilter.h" 18 #include "PluginFilter.h"
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 EXTERN_C void STDAPICALLTYPE OnInstall(MSIHANDLE hInstall, MSIHANDLE tmp) 166 EXTERN_C void STDAPICALLTYPE OnInstall(MSIHANDLE hInstall, MSIHANDLE tmp)
163 { 167 {
164 InitPlugin(true); 168 InitPlugin(true);
165 } 169 }
166 170
167 // Called from updater 171 // Called from updater
168 EXTERN_C void STDAPICALLTYPE OnUpdate(void) 172 EXTERN_C void STDAPICALLTYPE OnUpdate(void)
169 { 173 {
170 InitPlugin(false); 174 InitPlugin(false);
171 } 175 }
OLDNEW
« no previous file with comments | « src/plugin/Plugin.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld