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

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

Issue 228553002: Preference dis/allowing supervised users creation is now available as owner setting, not only as de… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Test-specific logic added: check for BrowserPolicyConnector existence used. Created 6 years, 7 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 // 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 virtual ProfileManager* profile_manager() OVERRIDE; 80 virtual ProfileManager* profile_manager() OVERRIDE;
81 virtual PrefService* local_state() OVERRIDE; 81 virtual PrefService* local_state() OVERRIDE;
82 virtual net::URLRequestContextGetter* system_request_context() OVERRIDE; 82 virtual net::URLRequestContextGetter* system_request_context() OVERRIDE;
83 virtual chrome_variations::VariationsService* variations_service() OVERRIDE; 83 virtual chrome_variations::VariationsService* variations_service() OVERRIDE;
84 virtual BrowserProcessPlatformPart* platform_part() OVERRIDE; 84 virtual BrowserProcessPlatformPart* platform_part() OVERRIDE;
85 virtual extensions::EventRouterForwarder* 85 virtual extensions::EventRouterForwarder*
86 extension_event_router_forwarder() OVERRIDE; 86 extension_event_router_forwarder() OVERRIDE;
87 virtual NotificationUIManager* notification_ui_manager() OVERRIDE; 87 virtual NotificationUIManager* notification_ui_manager() OVERRIDE;
88 virtual message_center::MessageCenter* message_center() OVERRIDE; 88 virtual message_center::MessageCenter* message_center() OVERRIDE;
89 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; 89 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE;
90 virtual bool is_browser_policy_connector_created() OVERRIDE;
90 virtual policy::PolicyService* policy_service() OVERRIDE; 91 virtual policy::PolicyService* policy_service() OVERRIDE;
91 virtual IconManager* icon_manager() OVERRIDE; 92 virtual IconManager* icon_manager() OVERRIDE;
92 virtual GLStringManager* gl_string_manager() OVERRIDE; 93 virtual GLStringManager* gl_string_manager() OVERRIDE;
93 virtual GpuModeManager* gpu_mode_manager() OVERRIDE; 94 virtual GpuModeManager* gpu_mode_manager() OVERRIDE;
94 virtual void CreateDevToolsHttpProtocolHandler( 95 virtual void CreateDevToolsHttpProtocolHandler(
95 chrome::HostDesktopType host_desktop_type, 96 chrome::HostDesktopType host_desktop_type,
96 const std::string& ip, 97 const std::string& ip,
97 int port) OVERRIDE; 98 int port) OVERRIDE;
98 virtual unsigned int AddRefModule() OVERRIDE; 99 virtual unsigned int AddRefModule() OVERRIDE;
99 virtual unsigned int ReleaseModule() OVERRIDE; 100 virtual unsigned int ReleaseModule() OVERRIDE;
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 283
283 #if defined(ENABLE_WEBRTC) 284 #if defined(ENABLE_WEBRTC)
284 // Lazily initialized. 285 // Lazily initialized.
285 scoped_ptr<WebRtcLogUploader> webrtc_log_uploader_; 286 scoped_ptr<WebRtcLogUploader> webrtc_log_uploader_;
286 #endif 287 #endif
287 288
288 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); 289 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
289 }; 290 };
290 291
291 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 292 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698