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

Side by Side Diff: chrome/browser/profiles/profile_dependency_manager.cc

Issue 11493003: Remove the protector service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix implicit ExtensionSystem -> TemplateURLService dependency Created 8 years 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 | « chrome/browser/prefs/session_startup_pref.cc ('k') | chrome/browser/profiles/profile_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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browser/profiles/profile_dependency_manager.h" 5 #include "chrome/browser/profiles/profile_dependency_manager.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 #include <iterator> 9 #include <iterator>
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 #include "chrome/browser/plugins/plugin_prefs_factory.h" 45 #include "chrome/browser/plugins/plugin_prefs_factory.h"
46 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" 46 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h"
47 #include "chrome/browser/predictors/predictor_database_factory.h" 47 #include "chrome/browser/predictors/predictor_database_factory.h"
48 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h" 48 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h"
49 #include "chrome/browser/prerender/prerender_link_manager_factory.h" 49 #include "chrome/browser/prerender/prerender_link_manager_factory.h"
50 #include "chrome/browser/prerender/prerender_manager_factory.h" 50 #include "chrome/browser/prerender/prerender_manager_factory.h"
51 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h" 51 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h"
52 #include "chrome/browser/profiles/profile.h" 52 #include "chrome/browser/profiles/profile.h"
53 #include "chrome/browser/profiles/profile_keyed_service.h" 53 #include "chrome/browser/profiles/profile_keyed_service.h"
54 #include "chrome/browser/profiles/profile_keyed_service_factory.h" 54 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
55 #include "chrome/browser/protector/protector_service_factory.h"
56 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" 55 #include "chrome/browser/search_engines/template_url_fetcher_factory.h"
57 #include "chrome/browser/search_engines/template_url_service_factory.h" 56 #include "chrome/browser/search_engines/template_url_service_factory.h"
58 #include "chrome/browser/sessions/session_service_factory.h" 57 #include "chrome/browser/sessions/session_service_factory.h"
59 #include "chrome/browser/sessions/tab_restore_service_factory.h" 58 #include "chrome/browser/sessions/tab_restore_service_factory.h"
60 #include "chrome/browser/signin/signin_manager_factory.h" 59 #include "chrome/browser/signin/signin_manager_factory.h"
61 #include "chrome/browser/signin/token_service_factory.h" 60 #include "chrome/browser/signin/token_service_factory.h"
62 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h" 61 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h"
63 #include "chrome/browser/speech/speech_input_extension_manager.h" 62 #include "chrome/browser/speech/speech_input_extension_manager.h"
64 #include "chrome/browser/spellchecker/spellcheck_factory.h" 63 #include "chrome/browser/spellchecker/spellcheck_factory.h"
65 #include "chrome/browser/sync/profile_sync_service_factory.h" 64 #include "chrome/browser/sync/profile_sync_service_factory.h"
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 // Not used on chromeos because signin happens before the profile is loaded. 271 // Not used on chromeos because signin happens before the profile is loaded.
273 policy::UserPolicySigninServiceFactory::GetInstance(); 272 policy::UserPolicySigninServiceFactory::GetInstance();
274 #endif 273 #endif
275 predictors::AutocompleteActionPredictorFactory::GetInstance(); 274 predictors::AutocompleteActionPredictorFactory::GetInstance();
276 predictors::PredictorDatabaseFactory::GetInstance(); 275 predictors::PredictorDatabaseFactory::GetInstance();
277 predictors::ResourcePrefetchPredictorFactory::GetInstance(); 276 predictors::ResourcePrefetchPredictorFactory::GetInstance();
278 prerender::PrerenderManagerFactory::GetInstance(); 277 prerender::PrerenderManagerFactory::GetInstance();
279 prerender::PrerenderLinkManagerFactory::GetInstance(); 278 prerender::PrerenderLinkManagerFactory::GetInstance();
280 ProfileSyncServiceFactory::GetInstance(); 279 ProfileSyncServiceFactory::GetInstance();
281 ProtocolHandlerRegistryFactory::GetInstance(); 280 ProtocolHandlerRegistryFactory::GetInstance();
282 #if defined(ENABLE_PROTECTOR_SERVICE)
283 protector::ProtectorServiceFactory::GetInstance();
284 #endif
285 #if defined(ENABLE_SESSION_SERVICE) 281 #if defined(ENABLE_SESSION_SERVICE)
286 SessionServiceFactory::GetInstance(); 282 SessionServiceFactory::GetInstance();
287 #endif 283 #endif
288 ShortcutsBackendFactory::GetInstance(); 284 ShortcutsBackendFactory::GetInstance();
289 ThumbnailServiceFactory::GetInstance(); 285 ThumbnailServiceFactory::GetInstance();
290 SigninManagerFactory::GetInstance(); 286 SigninManagerFactory::GetInstance();
291 #if defined(ENABLE_INPUT_SPEECH) 287 #if defined(ENABLE_INPUT_SPEECH)
292 SpeechInputExtensionManager::InitializeFactory(); 288 SpeechInputExtensionManager::InitializeFactory();
293 ChromeSpeechRecognitionPreferences::InitializeFactory(); 289 ChromeSpeechRecognitionPreferences::InitializeFactory();
294 #endif 290 #endif
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 } 409 }
414 410
415 result.append("\n /* Toplevel profile */\n"); 411 result.append("\n /* Toplevel profile */\n");
416 result.append(" Profile [shape=box];\n"); 412 result.append(" Profile [shape=box];\n");
417 413
418 result.append("}\n"); 414 result.append("}\n");
419 return result; 415 return result;
420 } 416 }
421 417
422 #endif 418 #endif
OLDNEW
« no previous file with comments | « chrome/browser/prefs/session_startup_pref.cc ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698