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

Side by Side Diff: ui/compositor/test/test_compositor_host_x11.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/test/test_compositor_host_win.cc ('k') | ui/events/blink/input_handler_proxy.cc » ('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 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 <X11/Xlib.h> 7 #include <X11/Xlib.h>
8 8
9 #include <memory> 9 #include <memory>
10 10
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
16 #include "base/thread_task_runner_handle.h" 16 #include "base/threading/thread_task_runner_handle.h"
17 #include "ui/compositor/compositor.h" 17 #include "ui/compositor/compositor.h"
18 #include "ui/gfx/geometry/rect.h" 18 #include "ui/gfx/geometry/rect.h"
19 #include "ui/gfx/x/x11_types.h" 19 #include "ui/gfx/x/x11_types.h"
20 20
21 namespace ui { 21 namespace ui {
22 22
23 class TestCompositorHostX11 : public TestCompositorHost { 23 class TestCompositorHostX11 : public TestCompositorHost {
24 public: 24 public:
25 TestCompositorHostX11(const gfx::Rect& bounds, 25 TestCompositorHostX11(const gfx::Rect& bounds,
26 ui::ContextFactory* context_factory); 26 ui::ContextFactory* context_factory);
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 } 83 }
84 84
85 // static 85 // static
86 TestCompositorHost* TestCompositorHost::Create( 86 TestCompositorHost* TestCompositorHost::Create(
87 const gfx::Rect& bounds, 87 const gfx::Rect& bounds,
88 ui::ContextFactory* context_factory) { 88 ui::ContextFactory* context_factory) {
89 return new TestCompositorHostX11(bounds, context_factory); 89 return new TestCompositorHostX11(bounds, context_factory);
90 } 90 }
91 91
92 } // namespace ui 92 } // namespace ui
OLDNEW
« no previous file with comments | « ui/compositor/test/test_compositor_host_win.cc ('k') | ui/events/blink/input_handler_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698