| OLD | NEW |
| 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/common/gpu/image_transport_surface.h" | 9 #include "content/common/gpu/image_transport_surface.h" |
| 10 #include "content/renderer/devtools/devtools_client.h" | 10 #include "content/renderer/devtools/devtools_client.h" |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 WebContentsDragWin::DisableDragDropForTesting(); | 113 WebContentsDragWin::DisableDragDropForTesting(); |
| 114 #endif | 114 #endif |
| 115 } | 115 } |
| 116 | 116 |
| 117 void DisableModalPopupMenus() { | 117 void DisableModalPopupMenus() { |
| 118 #if defined(OS_MACOSX) | 118 #if defined(OS_MACOSX) |
| 119 PopupMenuHelper::DontShowPopupMenuForTesting(); | 119 PopupMenuHelper::DontShowPopupMenuForTesting(); |
| 120 #endif | 120 #endif |
| 121 } | 121 } |
| 122 | 122 |
| 123 scoped_refptr<base::MessageLoopProxy> GetMediaThreadMessageLoopProxy() { |
| 124 return RenderThreadImpl::current()->GetMediaThreadMessageLoopProxy(); |
| 125 } |
| 126 |
| 123 } // namespace content | 127 } // namespace content |
| OLD | NEW |