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

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

Issue 1743473002: Change Mojo URLs to structured names (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@18collapse
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_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 class GURL;
13
14 namespace content { 12 namespace content {
15 13
16 // Implementation of the app connection mechanism provided to browser code. 14 // Implementation of the app connection mechanism provided to browser code.
17 class MojoAppConnectionImpl : public MojoAppConnection { 15 class MojoAppConnectionImpl : public MojoAppConnection {
18 public: 16 public:
19 MojoAppConnectionImpl(const GURL& url, const GURL& requestor_url); 17 MojoAppConnectionImpl(const std::string& name,
18 const std::string& requestor_name);
20 ~MojoAppConnectionImpl() override; 19 ~MojoAppConnectionImpl() override;
21 20
22 private: 21 private:
23 // MojoAppConnection: 22 // MojoAppConnection:
24 void GetInterface(const std::string& interface_name, 23 void GetInterface(const std::string& interface_name,
25 mojo::ScopedMessagePipeHandle handle) override; 24 mojo::ScopedMessagePipeHandle handle) override;
26 25
27 mojo::shell::mojom::InterfaceProviderPtr interfaces_; 26 mojo::shell::mojom::InterfaceProviderPtr interfaces_;
28 27
29 DISALLOW_COPY_AND_ASSIGN(MojoAppConnectionImpl); 28 DISALLOW_COPY_AND_ASSIGN(MojoAppConnectionImpl);
30 }; 29 };
31 30
32 } // namespace content 31 } // namespace content
33 32
34 #endif // CONTENT_BROWSER_MOJO_MOJO_APP_CONNECTION_IMPL_H_ 33 #endif // CONTENT_BROWSER_MOJO_MOJO_APP_CONNECTION_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/frame_mojo_shell.cc ('k') | content/browser/mojo/mojo_app_connection_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698