OLD | NEW |
---|---|
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_APP_CONNECTION_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_MOJO_MOJO_APP_CONNECTION_IMPL_H_ |
6 #define CONTENT_BROWSER_MOJO_MOJO_APP_CONNECTION_IMPL_H_ | 6 #define CONTENT_BROWSER_MOJO_MOJO_APP_CONNECTION_IMPL_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "content/public/browser/mojo_app_connection.h" | 9 #include "content/public/browser/mojo_app_connection.h" |
10 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" | 10 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 | 13 |
14 // Implementation of the app connection mechanism provided to browser code. | 14 // Implementation of the app connection mechanism provided to browser code. |
15 class MojoAppConnectionImpl : public MojoAppConnection { | 15 class MojoAppConnectionImpl : public MojoAppConnection { |
16 public: | 16 public: |
17 MojoAppConnectionImpl(const std::string& name, | 17 MojoAppConnectionImpl(BrowserContext* context, |
jam
2016/03/03 16:32:10
document
| |
18 const std::string& name, | |
18 const std::string& requestor_name); | 19 const std::string& requestor_name); |
19 ~MojoAppConnectionImpl() override; | 20 ~MojoAppConnectionImpl() override; |
20 | 21 |
21 private: | 22 private: |
22 // MojoAppConnection: | 23 // MojoAppConnection: |
23 void GetInterface(const std::string& interface_name, | 24 void GetInterface(const std::string& interface_name, |
24 mojo::ScopedMessagePipeHandle handle) override; | 25 mojo::ScopedMessagePipeHandle handle) override; |
25 | 26 |
26 mojo::shell::mojom::InterfaceProviderPtr interfaces_; | 27 mojo::shell::mojom::InterfaceProviderPtr interfaces_; |
27 | 28 |
28 DISALLOW_COPY_AND_ASSIGN(MojoAppConnectionImpl); | 29 DISALLOW_COPY_AND_ASSIGN(MojoAppConnectionImpl); |
29 }; | 30 }; |
30 | 31 |
31 } // namespace content | 32 } // namespace content |
32 | 33 |
33 #endif // CONTENT_BROWSER_MOJO_MOJO_APP_CONNECTION_IMPL_H_ | 34 #endif // CONTENT_BROWSER_MOJO_MOJO_APP_CONNECTION_IMPL_H_ |
OLD | NEW |