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

Side by Side Diff: components/view_manager/test_change_tracker.h

Issue 1085233004: Moves services implementations out of third_party/mojo_services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unnecessary changes Created 5 years, 8 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_TEST_CHANGE_TRACKER_H_ 5 #ifndef COMPONENTS_VIEW_MANAGER_TEST_CHANGE_TRACKER_H_
6 #define COMPONENTS_VIEW_MANAGER_TEST_CHANGE_TRACKER_H_ 6 #define COMPONENTS_VIEW_MANAGER_TEST_CHANGE_TRACKER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "components/view_manager/public/cpp/types.h"
13 #include "components/view_manager/public/interfaces/view_manager.mojom.h"
12 #include "third_party/mojo/src/mojo/public/cpp/bindings/array.h" 14 #include "third_party/mojo/src/mojo/public/cpp/bindings/array.h"
13 #include "third_party/mojo_services/src/geometry/public/interfaces/geometry.mojo m.h" 15 #include "ui/mojo/geometry/geometry.mojom.h"
14 #include "third_party/mojo_services/src/view_manager/public/cpp/types.h"
15 #include "third_party/mojo_services/src/view_manager/public/interfaces/view_mana ger.mojom.h"
16 16
17 namespace view_manager { 17 namespace view_manager {
18 18
19 enum ChangeType { 19 enum ChangeType {
20 CHANGE_TYPE_EMBED, 20 CHANGE_TYPE_EMBED,
21 CHANGE_TYPE_EMBEDDED_APP_DISCONNECTED, 21 CHANGE_TYPE_EMBEDDED_APP_DISCONNECTED,
22 // TODO(sky): NODE->VIEW. 22 // TODO(sky): NODE->VIEW.
23 CHANGE_TYPE_NODE_BOUNDS_CHANGED, 23 CHANGE_TYPE_NODE_BOUNDS_CHANGED,
24 CHANGE_TYPE_NODE_VIEWPORT_METRICS_CHANGED, 24 CHANGE_TYPE_NODE_VIEWPORT_METRICS_CHANGED,
25 CHANGE_TYPE_NODE_HIERARCHY_CHANGED, 25 CHANGE_TYPE_NODE_HIERARCHY_CHANGED,
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 148
149 Delegate* delegate_; 149 Delegate* delegate_;
150 std::vector<Change> changes_; 150 std::vector<Change> changes_;
151 151
152 DISALLOW_COPY_AND_ASSIGN(TestChangeTracker); 152 DISALLOW_COPY_AND_ASSIGN(TestChangeTracker);
153 }; 153 };
154 154
155 } // namespace view_manager 155 } // namespace view_manager
156 156
157 #endif // COMPONENTS_VIEW_MANAGER_TEST_CHANGE_TRACKER_H_ 157 #endif // COMPONENTS_VIEW_MANAGER_TEST_CHANGE_TRACKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698