OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 MOJO_SERVICES_VIEW_MANAGER_VIEW_MANAGER_INIT_SERVICE_IMPL_H_ | 5 #ifndef MOJO_SERVICES_VIEW_MANAGER_VIEW_MANAGER_INIT_SERVICE_IMPL_H_ |
6 #define MOJO_SERVICES_VIEW_MANAGER_VIEW_MANAGER_INIT_SERVICE_IMPL_H_ | 6 #define MOJO_SERVICES_VIEW_MANAGER_VIEW_MANAGER_INIT_SERVICE_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
viettrungluu
2014/10/06 16:12:21
"
| |
12 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" | 12 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" |
13 #include "mojo/services/view_manager/connection_manager.h" | 13 #include "mojo/services/view_manager/connection_manager.h" |
14 #include "mojo/services/view_manager/view_manager_export.h" | 14 #include "mojo/services/view_manager/view_manager_export.h" |
15 | 15 |
16 namespace mojo { | 16 namespace mojo { |
17 | 17 |
18 class ApplicationConnection; | 18 class ApplicationConnection; |
19 | 19 |
20 namespace service { | 20 namespace service { |
21 | 21 |
(...skipping 12 matching lines...) Expand all Loading... | |
34 : public InterfaceImpl<ViewManagerInitService> { | 34 : public InterfaceImpl<ViewManagerInitService> { |
35 public: | 35 public: |
36 ViewManagerInitServiceImpl(ApplicationConnection* connection, | 36 ViewManagerInitServiceImpl(ApplicationConnection* connection, |
37 ViewManagerInitServiceContext* context); | 37 ViewManagerInitServiceContext* context); |
38 virtual ~ViewManagerInitServiceImpl(); | 38 virtual ~ViewManagerInitServiceImpl(); |
39 | 39 |
40 private: | 40 private: |
41 // ViewManagerInitService overrides: | 41 // ViewManagerInitService overrides: |
42 virtual void Embed(const String& url, | 42 virtual void Embed(const String& url, |
43 ServiceProviderPtr service_provider, | 43 ServiceProviderPtr service_provider, |
44 const Callback<void(bool)>& callback) OVERRIDE; | 44 const Callback<void(bool)>& callback) override; |
45 | 45 |
46 ViewManagerInitServiceContext* context_; | 46 ViewManagerInitServiceContext* context_; |
47 | 47 |
48 DISALLOW_COPY_AND_ASSIGN(ViewManagerInitServiceImpl); | 48 DISALLOW_COPY_AND_ASSIGN(ViewManagerInitServiceImpl); |
49 }; | 49 }; |
50 | 50 |
51 #if defined(OS_WIN) | 51 #if defined(OS_WIN) |
52 #pragma warning(pop) | 52 #pragma warning(pop) |
53 #endif | 53 #endif |
54 | 54 |
55 } // namespace service | 55 } // namespace service |
56 } // namespace mojo | 56 } // namespace mojo |
57 | 57 |
58 #endif // MOJO_SERVICES_VIEW_MANAGER_VIEW_MANAGER_INIT_SERVICE_IMPL_H_ | 58 #endif // MOJO_SERVICES_VIEW_MANAGER_VIEW_MANAGER_INIT_SERVICE_IMPL_H_ |
OLD | NEW |