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

Side by Side Diff: mojo/services/profile/profile_service_impl.h

Issue 395163002: Bundle the network service in the shell on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « mojo/services/profile/DEPS ('k') | mojo/services/profile/profile_service_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MOJO_SERVICES_PROFILE_PROFILE_SERVICE_IMPL_H_
6 #define MOJO_SERVICES_PROFILE_PROFILE_SERVICE_IMPL_H_
7
8 #include "base/compiler_specific.h"
9 #include "mojo/public/cpp/system/macros.h"
10 #include "mojo/services/public/interfaces/profile/profile_service.mojom.h"
11
12 namespace mojo {
13
14 class ApplicationConnection;
15
16 class ProfileServiceImpl : public InterfaceImpl<ProfileService> {
17 public:
18 ProfileServiceImpl(ApplicationConnection* connection);
19 virtual ~ProfileServiceImpl();
20
21 // |ProfileService| methods:
22 virtual void GetPath(
23 PathKey key,
24 const mojo::Callback<void(mojo::String)>& callback)
25 OVERRIDE;
26
27 private:
28 MOJO_DISALLOW_COPY_AND_ASSIGN(ProfileServiceImpl);
29 };
30
31 } // namespace mojo
32
33 #endif // MOJO_SERVICES_PROFILE_PROFILE_SERVICE_IMPL_H_
OLDNEW
« no previous file with comments | « mojo/services/profile/DEPS ('k') | mojo/services/profile/profile_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698