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

Side by Side Diff: ui/compositor/test/test_compositor_host_android.cc

Issue 1968923003: Fix include path for moved thread_task_runner_handle.h header in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 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
« no previous file with comments | « ui/compositor/compositor_unittest.cc ('k') | ui/compositor/test/test_compositor_host_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "ui/compositor/test/test_compositor_host.h" 5 #include "ui/compositor/test/test_compositor_host.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
12 #include "ui/compositor/compositor.h" 12 #include "ui/compositor/compositor.h"
13 #include "ui/gfx/native_widget_types.h" 13 #include "ui/gfx/native_widget_types.h"
14 14
15 namespace ui { 15 namespace ui {
16 16
17 class TestCompositorHostAndroid : public TestCompositorHost { 17 class TestCompositorHostAndroid : public TestCompositorHost {
18 public: 18 public:
19 TestCompositorHostAndroid(const gfx::Rect& bounds, 19 TestCompositorHostAndroid(const gfx::Rect& bounds,
20 ui::ContextFactory* context_factory) { 20 ui::ContextFactory* context_factory) {
21 compositor_.reset(new ui::Compositor(context_factory, 21 compositor_.reset(new ui::Compositor(context_factory,
(...skipping 14 matching lines...) Expand all
36 DISALLOW_COPY_AND_ASSIGN(TestCompositorHostAndroid); 36 DISALLOW_COPY_AND_ASSIGN(TestCompositorHostAndroid);
37 }; 37 };
38 38
39 TestCompositorHost* TestCompositorHost::Create( 39 TestCompositorHost* TestCompositorHost::Create(
40 const gfx::Rect& bounds, 40 const gfx::Rect& bounds,
41 ui::ContextFactory* context_factory) { 41 ui::ContextFactory* context_factory) {
42 return new TestCompositorHostAndroid(bounds, context_factory); 42 return new TestCompositorHostAndroid(bounds, context_factory);
43 } 43 }
44 44
45 } // namespace ui 45 } // namespace ui
OLDNEW
« no previous file with comments | « ui/compositor/compositor_unittest.cc ('k') | ui/compositor/test/test_compositor_host_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698