OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <string> | 5 #include <string> |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/scoped_ptr.h" | |
10 #include "base/string_util.h" | 9 #include "base/string_util.h" |
11 #include "net/base/cookie_monster.h" | 10 #include "net/base/cookie_monster.h" |
12 #include "net/base/net_util.h" | 11 #include "net/base/net_util.h" |
13 #include "net/http/http_cache.h" | 12 #include "net/http/http_cache.h" |
14 #include "net/url_request/url_request_context.h" | 13 #include "net/url_request/url_request_context.h" |
15 #include "net/url_request/url_request_unittest.h" | 14 #include "net/url_request/url_request_unittest.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
17 #include "webkit/glue/plugins/plugin_list.h" | 16 #include "webkit/glue/plugins/plugin_list.h" |
18 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" | 17 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" |
19 #include "webkit/tools/test_shell/test_shell.h" | 18 #include "webkit/tools/test_shell/test_shell.h" |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 RequestContext* request_context_; | 111 RequestContext* request_context_; |
113 GURL test_url_; | 112 GURL test_url_; |
114 }; | 113 }; |
115 | 114 |
116 TEST_F(PluginTest, DISABLED_VerifyPluginWindowRect) { | 115 TEST_F(PluginTest, DISABLED_VerifyPluginWindowRect) { |
117 std::wstring test_url = GetTestURL(plugin_data_dir_, | 116 std::wstring test_url = GetTestURL(plugin_data_dir_, |
118 L"verify_plugin_window_rect.html"); | 117 L"verify_plugin_window_rect.html"); |
119 NavigateToURL(test_url); | 118 NavigateToURL(test_url); |
120 WaitForFinish("checkwindowrect", "1"); | 119 WaitForFinish("checkwindowrect", "1"); |
121 } | 120 } |
OLD | NEW |