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

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

Issue 434613003: Remove all the browser side extensions code from Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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 | « no previous file | chrome/browser/browser_process_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 // 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 bool created_local_state_; 187 bool created_local_state_;
188 scoped_ptr<PrefService> local_state_; 188 scoped_ptr<PrefService> local_state_;
189 189
190 bool created_icon_manager_; 190 bool created_icon_manager_;
191 scoped_ptr<IconManager> icon_manager_; 191 scoped_ptr<IconManager> icon_manager_;
192 192
193 scoped_ptr<GLStringManager> gl_string_manager_; 193 scoped_ptr<GLStringManager> gl_string_manager_;
194 194
195 scoped_ptr<GpuModeManager> gpu_mode_manager_; 195 scoped_ptr<GpuModeManager> gpu_mode_manager_;
196 196
197 #if defined(ENABLE_EXTENSIONS)
197 scoped_ptr<extensions::ExtensionsBrowserClient> extensions_browser_client_; 198 scoped_ptr<extensions::ExtensionsBrowserClient> extensions_browser_client_;
198 199
199 #if defined(ENABLE_EXTENSIONS)
200 scoped_refptr<extensions::EventRouterForwarder> 200 scoped_refptr<extensions::EventRouterForwarder>
201 extension_event_router_forwarder_; 201 extension_event_router_forwarder_;
202 202
203 scoped_ptr<MediaFileSystemRegistry> media_file_system_registry_; 203 scoped_ptr<MediaFileSystemRegistry> media_file_system_registry_;
204 #endif 204 #endif
205 205
206 #if !defined(OS_ANDROID) 206 #if !defined(OS_ANDROID)
207 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; 207 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_;
208 #endif 208 #endif
209 209
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 #endif 295 #endif
296 296
297 scoped_ptr<network_time::NetworkTimeTracker> network_time_tracker_; 297 scoped_ptr<network_time::NetworkTimeTracker> network_time_tracker_;
298 298
299 scoped_ptr<gcm::GCMDriver> gcm_driver_; 299 scoped_ptr<gcm::GCMDriver> gcm_driver_;
300 300
301 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); 301 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
302 }; 302 };
303 303
304 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 304 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698