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" | |
8 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
9 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
10 #include "base/path_service.h" | 9 #include "base/path_service.h" |
11 #include "content/common/browser_plugin/browser_plugin_messages.h" | 10 #include "content/common/browser_plugin/browser_plugin_messages.h" |
12 #include "content/public/common/content_constants.h" | 11 #include "content/public/common/content_constants.h" |
13 #include "content/renderer/browser_plugin/browser_plugin.h" | 12 #include "content/renderer/browser_plugin/browser_plugin.h" |
14 #include "content/renderer/browser_plugin/browser_plugin_manager_factory.h" | 13 #include "content/renderer/browser_plugin/browser_plugin_manager_factory.h" |
15 #include "content/renderer/browser_plugin/mock_browser_plugin.h" | 14 #include "content/renderer/browser_plugin/mock_browser_plugin.h" |
16 #include "content/renderer/browser_plugin/mock_browser_plugin_manager.h" | 15 #include "content/renderer/browser_plugin/mock_browser_plugin_manager.h" |
17 #include "content/renderer/render_thread_impl.h" | 16 #include "content/renderer/render_thread_impl.h" |
(...skipping 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
910 // These value are not populated (as an optimization) if autosize is | 909 // These value are not populated (as an optimization) if autosize is |
911 // disabled. | 910 // disabled. |
912 EXPECT_EQ(0, auto_size_params.min_size.width()); | 911 EXPECT_EQ(0, auto_size_params.min_size.width()); |
913 EXPECT_EQ(0, auto_size_params.min_size.height()); | 912 EXPECT_EQ(0, auto_size_params.min_size.height()); |
914 EXPECT_EQ(0, auto_size_params.max_size.width()); | 913 EXPECT_EQ(0, auto_size_params.max_size.width()); |
915 EXPECT_EQ(0, auto_size_params.max_size.height()); | 914 EXPECT_EQ(0, auto_size_params.max_size.height()); |
916 } | 915 } |
917 } | 916 } |
918 | 917 |
919 } // namespace content | 918 } // namespace content |
OLD | NEW |