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/logging.h" | |
9 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
10 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
11 #include "base/string_util.h" | 10 #include "base/string_util.h" |
12 #include "net/base/cookie_monster.h" | 11 #include "net/base/cookie_monster.h" |
13 #include "net/base/net_util.h" | 12 #include "net/base/net_util.h" |
14 #include "net/http/http_cache.h" | 13 #include "net/http/http_cache.h" |
15 #include "net/url_request/url_request_context.h" | 14 #include "net/url_request/url_request_context.h" |
16 #include "net/url_request/url_request_unittest.h" | 15 #include "net/url_request/url_request_unittest.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
18 #include "webkit/glue/plugins/plugin_list.h" | 17 #include "webkit/glue/plugins/plugin_list.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 RequestContext* request_context_; | 112 RequestContext* request_context_; |
114 GURL test_url_; | 113 GURL test_url_; |
115 }; | 114 }; |
116 | 115 |
117 TEST_F(PluginTest, DISABLED_VerifyPluginWindowRect) { | 116 TEST_F(PluginTest, DISABLED_VerifyPluginWindowRect) { |
118 std::wstring test_url = GetTestURL(plugin_data_dir_, | 117 std::wstring test_url = GetTestURL(plugin_data_dir_, |
119 L"verify_plugin_window_rect.html"); | 118 L"verify_plugin_window_rect.html"); |
120 NavigateToURL(test_url); | 119 NavigateToURL(test_url); |
121 WaitForFinish("checkwindowrect", "1"); | 120 WaitForFinish("checkwindowrect", "1"); |
122 } | 121 } |
OLD | NEW |