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

Side by Side Diff: ui/compositor/test/test_compositor_host_ozone.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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/bind.h" 9 #include "base/bind.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "base/thread_task_runner_handle.h" 14 #include "base/threading/thread_task_runner_handle.h"
15 #include "ui/compositor/compositor.h" 15 #include "ui/compositor/compositor.h"
16 #include "ui/gfx/geometry/rect.h" 16 #include "ui/gfx/geometry/rect.h"
17 17
18 namespace ui { 18 namespace ui {
19 19
20 class TestCompositorHostOzone : public TestCompositorHost { 20 class TestCompositorHostOzone : public TestCompositorHost {
21 public: 21 public:
22 TestCompositorHostOzone(const gfx::Rect& bounds, 22 TestCompositorHostOzone(const gfx::Rect& bounds,
23 ui::ContextFactory* context_factory); 23 ui::ContextFactory* context_factory);
24 ~TestCompositorHostOzone() override; 24 ~TestCompositorHostOzone() override;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 } 63 }
64 64
65 // static 65 // static
66 TestCompositorHost* TestCompositorHost::Create( 66 TestCompositorHost* TestCompositorHost::Create(
67 const gfx::Rect& bounds, 67 const gfx::Rect& bounds,
68 ui::ContextFactory* context_factory) { 68 ui::ContextFactory* context_factory) {
69 return new TestCompositorHostOzone(bounds, context_factory); 69 return new TestCompositorHostOzone(bounds, context_factory);
70 } 70 }
71 71
72 } // namespace ui 72 } // namespace ui
OLDNEW
« no previous file with comments | « ui/compositor/test/test_compositor_host_mac.mm ('k') | ui/compositor/test/test_compositor_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698