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

Delta Between Two Patch Sets: src/plugin/PluginSystem.cpp

Issue 11013110: Cleanup (Closed)
Left Patch Set: SetPref/GetPref type safety. Comments addressed. Created July 22, 2013, 12:42 a.m.
Right Patch Set: More beautification and addressing comments Created July 29, 2013, 12:13 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/plugin/PluginSha1.cpp ('k') | src/plugin/PluginTabBase.h » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 #include "PluginStdAfx.h" 1 #include "PluginStdAfx.h"
2 2
3 // Internet / FTP 3 // Internet / FTP
4 #include <wininet.h> 4 #include <wininet.h>
5 5
6 // IP adapter 6 // IP adapter
7 #include <iphlpapi.h> 7 #include <iphlpapi.h>
8 8
9 #include "PluginSystem.h" 9 #include "PluginSystem.h"
10 #include "PluginClient.h" 10 #include "PluginClient.h"
11 #include "PluginSha1.h"
12 #include "PluginSettings.h" 11 #include "PluginSettings.h"
13 12
14 13
15 // IP adapter 14 // IP adapter
16 #pragma comment(lib, "IPHLPAPI.lib") 15 #pragma comment(lib, "IPHLPAPI.lib")
17 16
18 // IE functions 17 // IE functions
19 #pragma comment(lib, "iepmapi.lib") 18 #pragma comment(lib, "iepmapi.lib")
20 19
21 // Internet / FTP 20 // Internet / FTP
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 // Close the handler 128 // Close the handler
130 ::RegCloseKey(hKey); 129 ::RegCloseKey(hKey);
131 } 130 }
132 else 131 else
133 { 132 {
134 DEBUG_ERROR_LOG(res, PLUGIN_ERROR_OS_VERSION, PLUGIN_ERROR_OS_VERSION_REG_OP EN_KEY, L"Client::GetBrowserVer - Failed reg open"); 133 DEBUG_ERROR_LOG(res, PLUGIN_ERROR_OS_VERSION, PLUGIN_ERROR_OS_VERSION_REG_OP EN_KEY, L"Client::GetBrowserVer - Failed reg open");
135 } 134 }
136 135
137 return browserVersion; 136 return browserVersion;
138 } 137 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld