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

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

Issue 9515010: Chrome on Android : Begin removing references to themes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 9 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 | « build/common.gypi ('k') | chrome/browser/sync/profile_sync_components_factory.h » ('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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 protector::ProtectorServiceFactory::GetInstance(); 183 protector::ProtectorServiceFactory::GetInstance();
184 prerender::PrerenderManagerFactory::GetInstance(); 184 prerender::PrerenderManagerFactory::GetInstance();
185 ProfileSyncServiceFactory::GetInstance(); 185 ProfileSyncServiceFactory::GetInstance();
186 SessionServiceFactory::GetInstance(); 186 SessionServiceFactory::GetInstance();
187 SigninManagerFactory::GetInstance(); 187 SigninManagerFactory::GetInstance();
188 #if defined(ENABLE_INPUT_SPEECH) 188 #if defined(ENABLE_INPUT_SPEECH)
189 SpeechInputExtensionManager::InitializeFactory(); 189 SpeechInputExtensionManager::InitializeFactory();
190 #endif 190 #endif
191 SpellCheckFactory::GetInstance(); 191 SpellCheckFactory::GetInstance();
192 TabRestoreServiceFactory::GetInstance(); 192 TabRestoreServiceFactory::GetInstance();
193 #if defined(ENABLE_THEMES)
193 ThemeServiceFactory::GetInstance(); 194 ThemeServiceFactory::GetInstance();
195 #endif
194 TemplateURLServiceFactory::GetInstance(); 196 TemplateURLServiceFactory::GetInstance();
195 TokenServiceFactory::GetInstance(); 197 TokenServiceFactory::GetInstance();
196 #if defined(ENABLE_WEB_INTENTS) 198 #if defined(ENABLE_WEB_INTENTS)
197 WebIntentsRegistryFactory::GetInstance(); 199 WebIntentsRegistryFactory::GetInstance();
198 #endif 200 #endif
199 201
200 built_factories_ = true; 202 built_factories_ = true;
201 } 203 }
202 204
203 void ProfileDependencyManager::BuildDestructionOrder(Profile* profile) { 205 void ProfileDependencyManager::BuildDestructionOrder(Profile* profile) {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 } 305 }
304 306
305 result.append("\n /* Toplevel profile */\n"); 307 result.append("\n /* Toplevel profile */\n");
306 result.append(" Profile [shape=box];\n"); 308 result.append(" Profile [shape=box];\n");
307 309
308 result.append("}\n"); 310 result.append("}\n");
309 return result; 311 return result;
310 } 312 }
311 313
312 #endif 314 #endif
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/browser/sync/profile_sync_components_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698