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

Side by Side Diff: content/public/browser/browser_child_process_host_delegate.h

Issue 2207873002: Remove unused includes of shell::InterfaceRegistry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unfail compilation of service_worker_version_unittest.cc Created 4 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
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 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_ 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "ipc/ipc_listener.h" 9 #include "ipc/ipc_listener.h"
10 10
11 namespace shell { 11 namespace shell {
12 class InterfaceProvider; 12 class InterfaceProvider;
13 class InterfaceRegistry;
14 } 13 }
15 14
16 namespace content { 15 namespace content {
17 16
18 // Interface that all users of BrowserChildProcessHost need to provide. 17 // Interface that all users of BrowserChildProcessHost need to provide.
19 class CONTENT_EXPORT BrowserChildProcessHostDelegate : public IPC::Listener { 18 class CONTENT_EXPORT BrowserChildProcessHostDelegate : public IPC::Listener {
20 public: 19 public:
21 ~BrowserChildProcessHostDelegate() override {} 20 ~BrowserChildProcessHostDelegate() override {}
22 21
23 // Delegates return true if it's ok to shut down the child process (which is 22 // Delegates return true if it's ok to shut down the child process (which is
(...skipping 15 matching lines...) Expand all
39 virtual void OnProcessCrashed(int exit_code) {} 38 virtual void OnProcessCrashed(int exit_code) {}
40 39
41 // Returns the shell::InterfaceProvider the browser process can use to bind 40 // Returns the shell::InterfaceProvider the browser process can use to bind
42 // interfaces exposed to it from the child. 41 // interfaces exposed to it from the child.
43 virtual shell::InterfaceProvider* GetRemoteInterfaces(); 42 virtual shell::InterfaceProvider* GetRemoteInterfaces();
44 }; 43 };
45 44
46 }; // namespace content 45 }; // namespace content
47 46
48 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_ 47 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/browser/utility_process_host_impl.cc ('k') | content/public/browser/render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698