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

Side by Side Diff: mojo/services/window_manager/window_manager_internal_service_impl.h

Issue 663683007: Moves WindowManagerInternal* into own .mojom (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: merge Created 6 years, 1 month 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
« no previous file with comments | « mojo/services/view_manager/view_manager_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_WINDOW_MANAGER_WINDOW_MANAGER_INTERNAL_SERVICE_IMPL_H_ 5 #ifndef MOJO_SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_INTERNAL_SERVICE_IMPL_H_
6 #define MOJO_SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_INTERNAL_SERVICE_IMPL_H_ 6 #define MOJO_SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_INTERNAL_SERVICE_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "mojo/services/public/interfaces/window_manager/window_manager.mojom.h" 9 #include "mojo/services/public/interfaces/window_manager/window_manager_internal .mojom.h"
10 10
11 namespace mojo { 11 namespace mojo {
12 12
13 class WindowManagerApp; 13 class WindowManagerApp;
14 14
15 class WindowManagerInternalServiceImpl 15 class WindowManagerInternalServiceImpl
16 : public InterfaceImpl<WindowManagerInternalService> { 16 : public InterfaceImpl<WindowManagerInternalService> {
17 public: 17 public:
18 explicit WindowManagerInternalServiceImpl(WindowManagerApp* app); 18 explicit WindowManagerInternalServiceImpl(WindowManagerApp* app);
19 virtual ~WindowManagerInternalServiceImpl(); 19 virtual ~WindowManagerInternalServiceImpl();
20 20
21 private: 21 private:
22 // WindowManagerInternalServiceImpl: 22 // WindowManagerInternalServiceImpl:
23 virtual void OnViewInputEvent(mojo::EventPtr event) override; 23 virtual void OnViewInputEvent(mojo::EventPtr event) override;
24 24
25 // InterfaceImpl: 25 // InterfaceImpl:
26 virtual void OnConnectionEstablished() override; 26 virtual void OnConnectionEstablished() override;
27 27
28 WindowManagerApp* app_; 28 WindowManagerApp* app_;
29 29
30 DISALLOW_COPY_AND_ASSIGN(WindowManagerInternalServiceImpl); 30 DISALLOW_COPY_AND_ASSIGN(WindowManagerInternalServiceImpl);
31 }; 31 };
32 32
33 } // namespace mojo 33 } // namespace mojo
34 34
35 #endif // MOJO_SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_INTERNAL_SERVICE_IMPL_H_ 35 #endif // MOJO_SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_INTERNAL_SERVICE_IMPL_H_
OLDNEW
« no previous file with comments | « mojo/services/view_manager/view_manager_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698