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

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

Issue 1737933002: mojo leveldb: Get profile and leveldb connected to DOMStorageContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add OWNERS file by request. Created 4 years, 9 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 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 // Takes a BrowserContext and derives a mojo userid from it for this
18 // connection.
19 MojoAppConnectionImpl(const std::string& user_id,
20 const std::string& name,
18 const std::string& requestor_name); 21 const std::string& requestor_name);
19 ~MojoAppConnectionImpl() override; 22 ~MojoAppConnectionImpl() override;
20 23
21 private: 24 private:
22 // MojoAppConnection: 25 // MojoAppConnection:
23 void GetInterface(const std::string& interface_name, 26 void GetInterface(const std::string& interface_name,
24 mojo::ScopedMessagePipeHandle handle) override; 27 mojo::ScopedMessagePipeHandle handle) override;
25 28
26 mojo::shell::mojom::InterfaceProviderPtr interfaces_; 29 mojo::shell::mojom::InterfaceProviderPtr interfaces_;
27 30
28 DISALLOW_COPY_AND_ASSIGN(MojoAppConnectionImpl); 31 DISALLOW_COPY_AND_ASSIGN(MojoAppConnectionImpl);
29 }; 32 };
30 33
31 } // namespace content 34 } // namespace content
32 35
33 #endif // CONTENT_BROWSER_MOJO_MOJO_APP_CONNECTION_IMPL_H_ 36 #endif // CONTENT_BROWSER_MOJO_MOJO_APP_CONNECTION_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698