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

Side by Side Diff: chrome/browser/ui/startup/startup_browser_creator_impl.cc

Issue 147923005: Split ExtensionSystem interface from ExtensionSystemImpl implementation, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re^3base Created 6 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
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/ui/startup/startup_browser_creator_impl.h" 5 #include "chrome/browser/ui/startup/startup_browser_creator_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "apps/app_restore_service.h" 10 #include "apps/app_restore_service.h"
(...skipping 14 matching lines...) Expand all
25 #include "base/strings/utf_string_conversions.h" 25 #include "base/strings/utf_string_conversions.h"
26 #include "base/threading/thread_restrictions.h" 26 #include "base/threading/thread_restrictions.h"
27 #include "chrome/browser/auto_launch_trial.h" 27 #include "chrome/browser/auto_launch_trial.h"
28 #include "chrome/browser/browser_process.h" 28 #include "chrome/browser/browser_process.h"
29 #include "chrome/browser/chrome_notification_types.h" 29 #include "chrome/browser/chrome_notification_types.h"
30 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" 30 #include "chrome/browser/custom_handlers/protocol_handler_registry.h"
31 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" 31 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h"
32 #include "chrome/browser/defaults.h" 32 #include "chrome/browser/defaults.h"
33 #include "chrome/browser/extensions/extension_creator.h" 33 #include "chrome/browser/extensions/extension_creator.h"
34 #include "chrome/browser/extensions/extension_service.h" 34 #include "chrome/browser/extensions/extension_service.h"
35 #include "chrome/browser/extensions/extension_system.h"
36 #include "chrome/browser/extensions/launch_util.h" 35 #include "chrome/browser/extensions/launch_util.h"
37 #include "chrome/browser/extensions/pack_extension_job.h" 36 #include "chrome/browser/extensions/pack_extension_job.h"
38 #include "chrome/browser/first_run/first_run.h" 37 #include "chrome/browser/first_run/first_run.h"
39 #include "chrome/browser/google/google_util.h" 38 #include "chrome/browser/google/google_util.h"
40 #include "chrome/browser/infobars/infobar_service.h" 39 #include "chrome/browser/infobars/infobar_service.h"
41 #include "chrome/browser/net/predictor.h" 40 #include "chrome/browser/net/predictor.h"
42 #include "chrome/browser/notifications/desktop_notification_service.h" 41 #include "chrome/browser/notifications/desktop_notification_service.h"
43 #include "chrome/browser/performance_monitor/startup_timer.h" 42 #include "chrome/browser/performance_monitor/startup_timer.h"
44 #include "chrome/browser/prefs/incognito_mode_prefs.h" 43 #include "chrome/browser/prefs/incognito_mode_prefs.h"
45 #include "chrome/browser/prefs/session_startup_pref.h" 44 #include "chrome/browser/prefs/session_startup_pref.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 #include "chrome/common/pref_names.h" 80 #include "chrome/common/pref_names.h"
82 #include "chrome/common/url_constants.h" 81 #include "chrome/common/url_constants.h"
83 #include "chrome/installer/util/browser_distribution.h" 82 #include "chrome/installer/util/browser_distribution.h"
84 #include "content/public/browser/child_process_security_policy.h" 83 #include "content/public/browser/child_process_security_policy.h"
85 #include "content/public/browser/dom_storage_context.h" 84 #include "content/public/browser/dom_storage_context.h"
86 #include "content/public/browser/notification_observer.h" 85 #include "content/public/browser/notification_observer.h"
87 #include "content/public/browser/notification_registrar.h" 86 #include "content/public/browser/notification_registrar.h"
88 #include "content/public/browser/storage_partition.h" 87 #include "content/public/browser/storage_partition.h"
89 #include "content/public/browser/web_contents.h" 88 #include "content/public/browser/web_contents.h"
90 #include "content/public/browser/web_contents_view.h" 89 #include "content/public/browser/web_contents_view.h"
90 #include "extensions/browser/extension_system.h"
91 #include "extensions/common/constants.h" 91 #include "extensions/common/constants.h"
92 #include "grit/locale_settings.h" 92 #include "grit/locale_settings.h"
93 #include "ui/base/l10n/l10n_util.h" 93 #include "ui/base/l10n/l10n_util.h"
94 #include "ui/base/resource/resource_bundle.h" 94 #include "ui/base/resource/resource_bundle.h"
95 #include "ui/gfx/rect.h" 95 #include "ui/gfx/rect.h"
96 #include "ui/gfx/screen.h" 96 #include "ui/gfx/screen.h"
97 97
98 #if defined(OS_MACOSX) 98 #if defined(OS_MACOSX)
99 #include "base/mac/mac_util.h" 99 #include "base/mac/mac_util.h"
100 #include "chrome/browser/ui/cocoa/keystone_infobar_delegate.h" 100 #include "chrome/browser/ui/cocoa/keystone_infobar_delegate.h"
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 } 989 }
990 990
991 #if !defined(OS_WIN) 991 #if !defined(OS_WIN)
992 // static 992 // static
993 bool StartupBrowserCreatorImpl::OpenStartupURLsInExistingBrowser( 993 bool StartupBrowserCreatorImpl::OpenStartupURLsInExistingBrowser(
994 Profile* profile, 994 Profile* profile,
995 const std::vector<GURL>& startup_urls) { 995 const std::vector<GURL>& startup_urls) {
996 return false; 996 return false;
997 } 997 }
998 #endif 998 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698