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

Side by Side Diff: chrome/browser/browser_process_impl.h

Issue 7583007: Add "enabled" state to the ClientSideDetectionService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.cc » ('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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // When each service is created, we set a flag indicating this. At this point, 5 // When each service is created, we set a flag indicating this. At this point,
6 // the service initialization could fail or succeed. This allows us to remember 6 // the service initialization could fail or succeed. This allows us to remember
7 // if we tried to create a service, and not try creating it over and over if 7 // if we tried to create a service, and not try creating it over and over if
8 // the creation failed. 8 // the creation failed.
9 9
10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 252
253 scoped_ptr<TabCloseableStateWatcher> tab_closeable_state_watcher_; 253 scoped_ptr<TabCloseableStateWatcher> tab_closeable_state_watcher_;
254 254
255 scoped_ptr<BackgroundModeManager> background_mode_manager_; 255 scoped_ptr<BackgroundModeManager> background_mode_manager_;
256 256
257 scoped_ptr<StatusTray> status_tray_; 257 scoped_ptr<StatusTray> status_tray_;
258 258
259 bool created_safe_browsing_service_; 259 bool created_safe_browsing_service_;
260 scoped_refptr<SafeBrowsingService> safe_browsing_service_; 260 scoped_refptr<SafeBrowsingService> safe_browsing_service_;
261 261
262 bool created_safe_browsing_detection_service_;
263 scoped_ptr<safe_browsing::ClientSideDetectionService>
264 safe_browsing_detection_service_;
265
266 unsigned int module_ref_count_; 262 unsigned int module_ref_count_;
267 bool did_start_; 263 bool did_start_;
268 264
269 // Ensures that all the print jobs are finished before closing the browser. 265 // Ensures that all the print jobs are finished before closing the browser.
270 scoped_ptr<printing::PrintJobManager> print_job_manager_; 266 scoped_ptr<printing::PrintJobManager> print_job_manager_;
271 267
272 std::string locale_; 268 std::string locale_;
273 269
274 bool checked_for_new_frames_; 270 bool checked_for_new_frames_;
275 bool using_new_frames_; 271 bool using_new_frames_;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 scoped_refptr<GpuBlacklistUpdater> gpu_blacklist_updater_; 323 scoped_refptr<GpuBlacklistUpdater> gpu_blacklist_updater_;
328 324
329 #if !defined(OS_CHROMEOS) 325 #if !defined(OS_CHROMEOS)
330 scoped_ptr<ComponentUpdateService> component_updater_; 326 scoped_ptr<ComponentUpdateService> component_updater_;
331 #endif 327 #endif
332 328
333 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); 329 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
334 }; 330 };
335 331
336 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 332 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698