Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Side by Side Diff: chrome/app/close_handle_hook_win.cc

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/app/chrome_main_delegate.cc ('k') | chrome/app/generated_resources.grd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/app/close_handle_hook_win.h" 5 #include "chrome/app/close_handle_hook_win.h"
6 6
7 #include <Windows.h> 7 #include <Windows.h>
8 #include <psapi.h> 8 #include <psapi.h>
9 9
10 #include <vector> 10 #include <vector>
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 it != hooks_.end(); ++it) { 177 it != hooks_.end(); ++it) {
178 (*it)->Unpatch(); 178 (*it)->Unpatch();
179 delete *it; 179 delete *it;
180 } 180 }
181 } 181 }
182 182
183 bool UseHooks() { 183 bool UseHooks() {
184 #if defined(ARCH_CPU_X86_64) 184 #if defined(ARCH_CPU_X86_64)
185 return false; 185 return false;
186 #elif defined(NDEBUG) 186 #elif defined(NDEBUG)
187 chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel(); 187 version_info::Channel channel = chrome::VersionInfo::GetChannel();
188 if (channel == chrome::VersionInfo::CHANNEL_CANARY || 188 if (channel == version_info::Channel::CANARY ||
189 channel == chrome::VersionInfo::CHANNEL_DEV || 189 channel == version_info::Channel::DEV ||
190 channel == chrome::VersionInfo::CHANNEL_UNKNOWN) { 190 channel == version_info::Channel::UNKNOWN) {
191 return true; 191 return true;
192 } 192 }
193 193
194 return false; 194 return false;
195 #else // NDEBUG 195 #else // NDEBUG
196 return true; 196 return true;
197 #endif 197 #endif
198 } 198 }
199 199
200 void PatchLoadedModules(CloseHandleHooks* hooks) { 200 void PatchLoadedModules(CloseHandleHooks* hooks) {
(...skipping 22 matching lines...) Expand all
223 // threads attempting to call CloseHandle. 223 // threads attempting to call CloseHandle.
224 hooks->AddEATPatch(); 224 hooks->AddEATPatch();
225 PatchLoadedModules(hooks); 225 PatchLoadedModules(hooks);
226 } 226 }
227 } 227 }
228 228
229 void RemoveCloseHandleHooks() { 229 void RemoveCloseHandleHooks() {
230 // We are partching all loaded modules without forcing them to stay in memory, 230 // We are partching all loaded modules without forcing them to stay in memory,
231 // removing patches is not safe. 231 // removing patches is not safe.
232 } 232 }
OLDNEW
« no previous file with comments | « chrome/app/chrome_main_delegate.cc ('k') | chrome/app/generated_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698