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

Side by Side Diff: components/view_manager/public/cpp/view.h

Issue 1139123006: Fork the mojo shell interfaces used by Mandoline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years, 7 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 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 COMPONENTS_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_ 5 #ifndef COMPONENTS_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_
6 #define COMPONENTS_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_ 6 #define COMPONENTS_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/observer_list.h" 11 #include "base/observer_list.h"
12 #include "components/surfaces/public/interfaces/surface_id.mojom.h" 12 #include "components/surfaces/public/interfaces/surface_id.mojom.h"
13 #include "components/view_manager/public/cpp/types.h" 13 #include "components/view_manager/public/cpp/types.h"
14 #include "components/view_manager/public/interfaces/view_manager.mojom.h" 14 #include "components/view_manager/public/interfaces/view_manager.mojom.h"
15 #include "components/view_manager/public/interfaces/view_manager_constants.mojom .h" 15 #include "components/view_manager/public/interfaces/view_manager_constants.mojom .h"
16 #include "mojo/application/public/interfaces/service_provider.mojom.h"
16 #include "third_party/mojo/src/mojo/public/cpp/bindings/array.h" 17 #include "third_party/mojo/src/mojo/public/cpp/bindings/array.h"
17 #include "third_party/mojo/src/mojo/public/cpp/system/macros.h" 18 #include "third_party/mojo/src/mojo/public/cpp/system/macros.h"
18 #include "third_party/mojo/src/mojo/public/interfaces/application/service_provid er.mojom.h"
19 #include "ui/mojo/geometry/geometry.mojom.h" 19 #include "ui/mojo/geometry/geometry.mojom.h"
20 20
21 namespace mojo { 21 namespace mojo {
22 22
23 class ServiceProviderImpl; 23 class ServiceProviderImpl;
24 class View; 24 class View;
25 class ViewManager; 25 class ViewManager;
26 class ViewObserver; 26 class ViewObserver;
27 27
28 // Defined in view_property.h (which we do not include) 28 // Defined in view_property.h (which we do not include)
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 }; 201 };
202 202
203 std::map<const void*, Value> prop_map_; 203 std::map<const void*, Value> prop_map_;
204 204
205 MOJO_DISALLOW_COPY_AND_ASSIGN(View); 205 MOJO_DISALLOW_COPY_AND_ASSIGN(View);
206 }; 206 };
207 207
208 } // namespace mojo 208 } // namespace mojo
209 209
210 #endif // COMPONENTS_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_ 210 #endif // COMPONENTS_VIEW_MANAGER_PUBLIC_CPP_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698