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/renderer/browser_plugin/browser_plugin_browsertest.h" | 5 #include "content/renderer/browser_plugin/browser_plugin_browsertest.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
11 #include "content/common/browser_plugin_messages.h" | 11 #include "content/common/browser_plugin_messages.h" |
12 #include "content/public/common/content_constants.h" | 12 #include "content/public/common/content_constants.h" |
13 #include "content/renderer/browser_plugin/browser_plugin.h" | 13 #include "content/renderer/browser_plugin/browser_plugin_impl.h" |
14 #include "content/renderer/browser_plugin/browser_plugin_manager_factory.h" | 14 #include "content/renderer/browser_plugin/browser_plugin_manager_factory.h" |
15 #include "content/renderer/browser_plugin/mock_browser_plugin.h" | 15 #include "content/renderer/browser_plugin/mock_browser_plugin.h" |
16 #include "content/renderer/browser_plugin/mock_browser_plugin_manager.h" | 16 #include "content/renderer/browser_plugin/mock_browser_plugin_manager.h" |
17 #include "content/renderer/render_thread_impl.h" | 17 #include "content/renderer/render_thread_impl.h" |
18 #include "content/renderer/renderer_webkitplatformsupport_impl.h" | 18 #include "content/renderer/renderer_webkitplatformsupport_impl.h" |
19 #include "skia/ext/platform_canvas.h" | 19 #include "skia/ext/platform_canvas.h" |
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" | 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" |
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h" | 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h" |
23 | 23 |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
911 // These value are not populated (as an optimization) if autosize is | 911 // These value are not populated (as an optimization) if autosize is |
912 // disabled. | 912 // disabled. |
913 EXPECT_EQ(0, auto_size_params.min_size.width()); | 913 EXPECT_EQ(0, auto_size_params.min_size.width()); |
914 EXPECT_EQ(0, auto_size_params.min_size.height()); | 914 EXPECT_EQ(0, auto_size_params.min_size.height()); |
915 EXPECT_EQ(0, auto_size_params.max_size.width()); | 915 EXPECT_EQ(0, auto_size_params.max_size.width()); |
916 EXPECT_EQ(0, auto_size_params.max_size.height()); | 916 EXPECT_EQ(0, auto_size_params.max_size.height()); |
917 } | 917 } |
918 } | 918 } |
919 | 919 |
920 } // namespace content | 920 } // namespace content |
OLD | NEW |