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

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

Issue 8515027: Define the public version of the browser side RenderProcessHost interface. This interface is not ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/browser_process_impl.h" 5 #include "chrome/browser/browser_process_impl.h"
6 6
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 #include "content/browser/browser_process_sub_thread.h" 72 #include "content/browser/browser_process_sub_thread.h"
73 #include "content/browser/child_process_security_policy.h" 73 #include "content/browser/child_process_security_policy.h"
74 #include "content/browser/debugger/devtools_manager.h" 74 #include "content/browser/debugger/devtools_manager.h"
75 #include "content/browser/download/download_file_manager.h" 75 #include "content/browser/download/download_file_manager.h"
76 #include "content/browser/download/download_status_updater.h" 76 #include "content/browser/download/download_status_updater.h"
77 #include "content/browser/download/mhtml_generation_manager.h" 77 #include "content/browser/download/mhtml_generation_manager.h"
78 #include "content/browser/download/save_file_manager.h" 78 #include "content/browser/download/save_file_manager.h"
79 #include "content/browser/gpu/gpu_process_host_ui_shim.h" 79 #include "content/browser/gpu/gpu_process_host_ui_shim.h"
80 #include "content/browser/net/browser_online_state_observer.h" 80 #include "content/browser/net/browser_online_state_observer.h"
81 #include "content/browser/plugin_service.h" 81 #include "content/browser/plugin_service.h"
82 #include "content/browser/renderer_host/render_process_host.h"
83 #include "content/browser/renderer_host/resource_dispatcher_host.h" 82 #include "content/browser/renderer_host/resource_dispatcher_host.h"
84 #include "content/public/browser/browser_thread.h" 83 #include "content/public/browser/browser_thread.h"
85 #include "content/public/browser/notification_details.h" 84 #include "content/public/browser/notification_details.h"
85 #include "content/public/browser/render_process_host.h"
86 #include "content/public/common/url_fetcher.h" 86 #include "content/public/common/url_fetcher.h"
87 #include "ipc/ipc_logging.h" 87 #include "ipc/ipc_logging.h"
88 #include "net/socket/client_socket_pool_manager.h" 88 #include "net/socket/client_socket_pool_manager.h"
89 #include "net/url_request/url_request_context_getter.h" 89 #include "net/url_request/url_request_context_getter.h"
90 #include "ui/base/clipboard/clipboard.h" 90 #include "ui/base/clipboard/clipboard.h"
91 #include "ui/base/l10n/l10n_util.h" 91 #include "ui/base/l10n/l10n_util.h"
92 92
93 #if defined(OS_WIN) 93 #if defined(OS_WIN)
94 #include "views/focus/view_storage.h" 94 #include "views/focus/view_storage.h"
95 #elif defined(OS_MACOSX) 95 #elif defined(OS_MACOSX)
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after
1150 } 1150 }
1151 1151
1152 void BrowserProcessImpl::OnAutoupdateTimer() { 1152 void BrowserProcessImpl::OnAutoupdateTimer() {
1153 if (CanAutorestartForUpdate()) { 1153 if (CanAutorestartForUpdate()) {
1154 DLOG(WARNING) << "Detected update. Restarting browser."; 1154 DLOG(WARNING) << "Detected update. Restarting browser.";
1155 RestartBackgroundInstance(); 1155 RestartBackgroundInstance();
1156 } 1156 }
1157 } 1157 }
1158 1158
1159 #endif // (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) 1159 #endif // (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698