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

Side by Side Diff: services/ui/ws/test_utils.cc

Issue 2481263002: Introduce Display Compositor mojo interface. Use InProcessContextProvider. (Closed)
Patch Set: Make ContextProvider NON_EXPORTED_BASE of InProcessContextProvider Created 4 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include "services/ui/ws/test_utils.h" 5 #include "services/ui/ws/test_utils.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/memory/ptr_util.h" 9 #include "base/memory/ptr_util.h"
10 #include "cc/output/copy_output_request.h" 10 #include "cc/output/copy_output_request.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 gfx::Rect GetBounds() const override { return display_metrics_.bounds; } 56 gfx::Rect GetBounds() const override { return display_metrics_.bounds; }
57 bool UpdateViewportMetrics(const display::ViewportMetrics& metrics) override { 57 bool UpdateViewportMetrics(const display::ViewportMetrics& metrics) override {
58 if (display_metrics_ == metrics) 58 if (display_metrics_ == metrics)
59 return false; 59 return false;
60 display_metrics_ = metrics; 60 display_metrics_ = metrics;
61 return true; 61 return true;
62 } 62 }
63 const display::ViewportMetrics& GetViewportMetrics() const override { 63 const display::ViewportMetrics& GetViewportMetrics() const override {
64 return display_metrics_; 64 return display_metrics_;
65 } 65 }
66 void OnGpuChannelEstablished(
67 scoped_refptr<gpu::GpuChannelHost> host) override {}
68 66
69 private: 67 private:
70 const int64_t id_; 68 const int64_t id_;
71 display::ViewportMetrics display_metrics_; 69 display::ViewportMetrics display_metrics_;
72 mojom::Cursor* cursor_storage_; 70 mojom::Cursor* cursor_storage_;
73 71
74 DISALLOW_COPY_AND_ASSIGN(TestPlatformDisplay); 72 DISALLOW_COPY_AND_ASSIGN(TestPlatformDisplay);
75 }; 73 };
76 74
77 ClientWindowId NextUnusedClientWindowId(WindowTree* tree) { 75 ClientWindowId NextUnusedClientWindowId(WindowTree* tree) {
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 return nullptr; 622 return nullptr;
625 if (!tree->AddWindow(parent_client_id, client_window_id)) 623 if (!tree->AddWindow(parent_client_id, client_window_id))
626 return nullptr; 624 return nullptr;
627 *client_id = client_window_id; 625 *client_id = client_window_id;
628 return tree->GetWindowByClientId(client_window_id); 626 return tree->GetWindowByClientId(client_window_id);
629 } 627 }
630 628
631 } // namespace test 629 } // namespace test
632 } // namespace ws 630 } // namespace ws
633 } // namespace ui 631 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698