Chromium Code Reviews

Side by Side Diff: mojo/services/view_manager/public/cpp/view.h

Issue 790213002: Restructure public side of geometry service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Nits Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
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_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_ 5 #ifndef MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_
6 #define MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_ 6 #define MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/observer_list.h" 11 #include "base/observer_list.h"
12 #include "mojo/public/cpp/bindings/array.h" 12 #include "mojo/public/cpp/bindings/array.h"
13 #include "mojo/public/interfaces/application/service_provider.mojom.h" 13 #include "mojo/public/interfaces/application/service_provider.mojom.h"
14 #include "mojo/services/public/interfaces/geometry/geometry.mojom.h" 14 #include "mojo/services/geometry/public/interfaces/geometry.mojom.h"
15 #include "mojo/services/surfaces/public/interfaces/surface_id.mojom.h" 15 #include "mojo/services/surfaces/public/interfaces/surface_id.mojom.h"
16 #include "mojo/services/view_manager/public/cpp/types.h" 16 #include "mojo/services/view_manager/public/cpp/types.h"
17 #include "mojo/services/view_manager/public/interfaces/view_manager_constants.mo jom.h" 17 #include "mojo/services/view_manager/public/interfaces/view_manager_constants.mo jom.h"
18 18
19 namespace mojo { 19 namespace mojo {
20 20
21 class ServiceProviderImpl; 21 class ServiceProviderImpl;
22 class View; 22 class View;
23 class ViewManager; 23 class ViewManager;
24 class ViewObserver; 24 class ViewObserver;
(...skipping 168 matching lines...)
193 }; 193 };
194 194
195 std::map<const void*, Value> prop_map_; 195 std::map<const void*, Value> prop_map_;
196 196
197 DISALLOW_COPY_AND_ASSIGN(View); 197 DISALLOW_COPY_AND_ASSIGN(View);
198 }; 198 };
199 199
200 } // namespace mojo 200 } // namespace mojo
201 201
202 #endif // MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_ 202 #endif // MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_
OLDNEW

Powered by Google App Engine