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

Side by Side Diff: content/test/layouttest_support.cc

Issue 17575007: Migrate TestRunner includes to new location (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « content/test/DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/public/test/layouttest_support.h" 5 #include "content/public/test/layouttest_support.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "content/browser/renderer_host/render_widget_host_impl.h" 9 #include "content/browser/renderer_host/render_widget_host_impl.h"
10 #include "content/common/gpu/image_transport_surface.h" 10 #include "content/common/gpu/image_transport_surface.h"
11 #include "content/renderer/render_thread_impl.h" 11 #include "content/renderer/render_thread_impl.h"
12 #include "content/renderer/render_view_impl.h" 12 #include "content/renderer/render_view_impl.h"
13 #include "content/renderer/renderer_webkitplatformsupport_impl.h" 13 #include "content/renderer/renderer_webkitplatformsupport_impl.h"
14 #include "third_party/WebKit/public/platform/WebGamepads.h" 14 #include "third_party/WebKit/public/platform/WebGamepads.h"
15 #include "third_party/WebKit/Tools/DumpRenderTree/chromium/TestRunner/public/Web TestProxy.h" 15 #include "third_party/WebKit/public/testing/WebTestProxy.h"
16 16
17 #if defined(OS_WIN) && !defined(USE_AURA) 17 #if defined(OS_WIN) && !defined(USE_AURA)
18 #include "content/browser/web_contents/web_contents_drag_win.h" 18 #include "content/browser/web_contents/web_contents_drag_win.h"
19 #endif 19 #endif
20 20
21 #if defined(OS_MACOSX) 21 #if defined(OS_MACOSX)
22 #include "content/browser/renderer_host/popup_menu_helper_mac.h" 22 #include "content/browser/renderer_host/popup_menu_helper_mac.h"
23 #endif 23 #endif
24 24
25 using WebKit::WebGamepads; 25 using WebKit::WebGamepads;
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 void DisableAutoResizeMode(RenderView* render_view, const WebSize& new_size) { 111 void DisableAutoResizeMode(RenderView* render_view, const WebSize& new_size) {
112 static_cast<RenderViewImpl*>(render_view) 112 static_cast<RenderViewImpl*>(render_view)
113 ->DisableAutoResizeForTesting(new_size); 113 ->DisableAutoResizeForTesting(new_size);
114 } 114 }
115 115
116 scoped_refptr<base::MessageLoopProxy> GetMediaThreadMessageLoopProxy() { 116 scoped_refptr<base::MessageLoopProxy> GetMediaThreadMessageLoopProxy() {
117 return RenderThreadImpl::current()->GetMediaThreadMessageLoopProxy(); 117 return RenderThreadImpl::current()->GetMediaThreadMessageLoopProxy();
118 } 118 }
119 119
120 } // namespace content 120 } // namespace content
OLDNEW
« no previous file with comments | « content/test/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698