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

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

Issue 2847743003: Eliminate InterfaceRegistry (Closed)
Patch Set: . Created 3 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
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.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 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 #if defined(OS_WIN) 279 #if defined(OS_WIN)
280 bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override; 280 bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override;
281 base::string16 GetAppContainerSidForSandboxType( 281 base::string16 GetAppContainerSidForSandboxType(
282 int sandbox_type) const override; 282 int sandbox_type) const override;
283 #endif 283 #endif
284 void ExposeInterfacesToRenderer( 284 void ExposeInterfacesToRenderer(
285 service_manager::BinderRegistry* registry, 285 service_manager::BinderRegistry* registry,
286 content::AssociatedInterfaceRegistry* associated_registry, 286 content::AssociatedInterfaceRegistry* associated_registry,
287 content::RenderProcessHost* render_process_host) override; 287 content::RenderProcessHost* render_process_host) override;
288 void ExposeInterfacesToMediaService( 288 void ExposeInterfacesToMediaService(
289 service_manager::InterfaceRegistry* registry, 289 service_manager::BinderRegistry* registry,
290 content::RenderFrameHost* render_frame_host) override; 290 content::RenderFrameHost* render_frame_host) override;
291 void ExposeInterfacesToFrame( 291 void ExposeInterfacesToFrame(
292 service_manager::BinderRegistry* registry, 292 service_manager::BinderRegistry* registry,
293 content::RenderFrameHost* render_frame_host) override; 293 content::RenderFrameHost* render_frame_host) override;
294 void BindInterfaceRequest( 294 void BindInterfaceRequest(
295 const service_manager::ServiceInfo& source_info, 295 const service_manager::ServiceInfo& source_info,
296 const std::string& interface_name, 296 const std::string& interface_name,
297 mojo::ScopedMessagePipeHandle* interface_pipe) override; 297 mojo::ScopedMessagePipeHandle* interface_pipe) override;
298 void RegisterInProcessServices(StaticServiceMap* services) override; 298 void RegisterInProcessServices(StaticServiceMap* services) override;
299 void RegisterOutOfProcessServices( 299 void RegisterOutOfProcessServices(
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 386 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
387 387
388 service_manager::BinderRegistry gpu_binder_registry_; 388 service_manager::BinderRegistry gpu_binder_registry_;
389 389
390 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 390 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
391 391
392 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 392 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
393 }; 393 };
394 394
395 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 395 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698