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

Side by Side Diff: content/browser/mojo/mojo_shell_context.h

Issue 1686223002: Move InterfaceProvider into the shell::mojom namespace like the rest of the shell interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_BROWSER_MOJO_MOJO_SHELL_CONTEXT_H_ 5 #ifndef CONTENT_BROWSER_MOJO_MOJO_SHELL_CONTEXT_H_
6 #define CONTENT_BROWSER_MOJO_MOJO_SHELL_CONTEXT_H_ 6 #define CONTENT_BROWSER_MOJO_MOJO_SHELL_CONTEXT_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
(...skipping 23 matching lines...) Expand all
34 MojoShellContext(); 34 MojoShellContext();
35 ~MojoShellContext(); 35 ~MojoShellContext();
36 36
37 // Connects an application at |url| and gets a handle to its exposed services. 37 // Connects an application at |url| and gets a handle to its exposed services.
38 // This is only intended for use in browser code that's not part of some Mojo 38 // This is only intended for use in browser code that's not part of some Mojo
39 // application. May be called from any thread. |requestor_url| is given to 39 // application. May be called from any thread. |requestor_url| is given to
40 // the target application as the requestor's URL upon connection. 40 // the target application as the requestor's URL upon connection.
41 static void ConnectToApplication( 41 static void ConnectToApplication(
42 const GURL& url, 42 const GURL& url,
43 const GURL& requestor_url, 43 const GURL& requestor_url,
44 mojo::InterfaceRequest<mojo::InterfaceProvider> request, 44 mojo::shell::mojom::InterfaceProviderRequest request,
45 mojo::InterfaceProviderPtr exposed_services, 45 mojo::shell::mojom::InterfaceProviderPtr exposed_services,
46 const mojo::shell::CapabilityFilter& filter, 46 const mojo::shell::CapabilityFilter& filter,
47 const mojo::shell::mojom::Shell::ConnectToApplicationCallback& callback); 47 const mojo::shell::mojom::Shell::ConnectToApplicationCallback& callback);
48 48
49 static void SetApplicationsForTest(const StaticApplicationMap* apps); 49 static void SetApplicationsForTest(const StaticApplicationMap* apps);
50 50
51 private: 51 private:
52 class Proxy; 52 class Proxy;
53 friend class Proxy; 53 friend class Proxy;
54 54
55 void ConnectToApplicationOnOwnThread( 55 void ConnectToApplicationOnOwnThread(
56 const GURL& url, 56 const GURL& url,
57 const GURL& requestor_url, 57 const GURL& requestor_url,
58 mojo::InterfaceRequest<mojo::InterfaceProvider> request, 58 mojo::shell::mojom::InterfaceProviderRequest request,
59 mojo::InterfaceProviderPtr exposed_services, 59 mojo::shell::mojom::InterfaceProviderPtr exposed_services,
60 const mojo::shell::CapabilityFilter& filter, 60 const mojo::shell::CapabilityFilter& filter,
61 const mojo::shell::mojom::Shell::ConnectToApplicationCallback& callback); 61 const mojo::shell::mojom::Shell::ConnectToApplicationCallback& callback);
62 62
63 static base::LazyInstance<scoped_ptr<Proxy>> proxy_; 63 static base::LazyInstance<scoped_ptr<Proxy>> proxy_;
64 64
65 scoped_ptr<mojo::shell::ApplicationManager> application_manager_; 65 scoped_ptr<mojo::shell::ApplicationManager> application_manager_;
66 66
67 DISALLOW_COPY_AND_ASSIGN(MojoShellContext); 67 DISALLOW_COPY_AND_ASSIGN(MojoShellContext);
68 }; 68 };
69 69
70 } // namespace content 70 } // namespace content
71 71
72 #endif // CONTENT_BROWSER_MOJO_MOJO_SHELL_CONTEXT_H_ 72 #endif // CONTENT_BROWSER_MOJO_MOJO_SHELL_CONTEXT_H_
OLDNEW
« no previous file with comments | « content/browser/mojo/mojo_application_host.cc ('k') | content/browser/mojo/mojo_shell_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698