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

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

Issue 12089102: Make most code on mac compile with enable_web_intents=0 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ffff Created 7 years, 10 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 | « chrome/browser/extensions/platform_app_launcher.cc ('k') | chrome/browser/ui/browser.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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 extensions::PushMessagingAPI::GetFactoryInstance(); 289 extensions::PushMessagingAPI::GetFactoryInstance();
290 extensions::SessionRestoreAPI::GetFactoryInstance(); 290 extensions::SessionRestoreAPI::GetFactoryInstance();
291 #if defined(ENABLE_INPUT_SPEECH) 291 #if defined(ENABLE_INPUT_SPEECH)
292 extensions::SpeechInputAPI::GetFactoryInstance(); 292 extensions::SpeechInputAPI::GetFactoryInstance();
293 #endif 293 #endif
294 extensions::SuggestedLinksRegistryFactory::GetInstance(); 294 extensions::SuggestedLinksRegistryFactory::GetInstance();
295 extensions::TabCaptureRegistryFactory::GetInstance(); 295 extensions::TabCaptureRegistryFactory::GetInstance();
296 extensions::TabsWindowsAPI::GetFactoryInstance(); 296 extensions::TabsWindowsAPI::GetFactoryInstance();
297 extensions::TtsAPI::GetFactoryInstance(); 297 extensions::TtsAPI::GetFactoryInstance();
298 extensions::WebAccessibleResourcesParser::GetFactoryInstance(); 298 extensions::WebAccessibleResourcesParser::GetFactoryInstance();
299 #if defined(ENABLE_WEB_INTENTS)
299 extensions::WebIntentsParser::GetFactoryInstance(); 300 extensions::WebIntentsParser::GetFactoryInstance();
301 #endif
300 extensions::WebNavigationAPI::GetFactoryInstance(); 302 extensions::WebNavigationAPI::GetFactoryInstance();
301 #endif 303 #endif
302 FaviconServiceFactory::GetInstance(); 304 FaviconServiceFactory::GetInstance();
303 #if defined(OS_CHROMEOS) && defined(FILE_MANAGER_EXTENSION) 305 #if defined(OS_CHROMEOS) && defined(FILE_MANAGER_EXTENSION)
304 FileBrowserPrivateAPIFactory::GetInstance(); 306 FileBrowserPrivateAPIFactory::GetInstance();
305 #endif 307 #endif
306 FindBarStateFactory::GetInstance(); 308 FindBarStateFactory::GetInstance();
307 GAIAInfoUpdateServiceFactory::GetInstance(); 309 GAIAInfoUpdateServiceFactory::GetInstance();
308 #if defined(USE_AURA) 310 #if defined(USE_AURA)
309 GesturePrefsObserverFactoryAura::GetInstance(); 311 GesturePrefsObserverFactoryAura::GetInstance();
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 } 463 }
462 464
463 result.append("\n /* Toplevel profile */\n"); 465 result.append("\n /* Toplevel profile */\n");
464 result.append(" Profile [shape=box];\n"); 466 result.append(" Profile [shape=box];\n");
465 467
466 result.append("}\n"); 468 result.append("}\n");
467 return result; 469 return result;
468 } 470 }
469 471
470 #endif 472 #endif
OLDNEW
« no previous file with comments | « chrome/browser/extensions/platform_app_launcher.cc ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698