OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "webkit/glue/plugins/test/plugin_javascript_open_popup.h" | 6 #include "webkit/plugins/npapi/test/plugin_javascript_open_popup.h" |
7 | 7 |
8 #if defined(USE_X11) | 8 #if defined(USE_X11) |
9 #include "third_party/npapi/bindings/npapi_x11.h" | 9 #include "third_party/npapi/bindings/npapi_x11.h" |
10 #endif | 10 #endif |
11 #include "webkit/glue/plugins/test/plugin_client.h" | 11 #include "webkit/plugins/npapi/test/plugin_client.h" |
12 | 12 |
13 namespace NPAPIClient { | 13 namespace NPAPIClient { |
14 | 14 |
15 ExecuteJavascriptOpenPopupWithPluginTest:: | 15 ExecuteJavascriptOpenPopupWithPluginTest:: |
16 ExecuteJavascriptOpenPopupWithPluginTest(NPP id, | 16 ExecuteJavascriptOpenPopupWithPluginTest(NPP id, |
17 NPNetscapeFuncs *host_functions) | 17 NPNetscapeFuncs *host_functions) |
18 : PluginTest(id, host_functions), | 18 : PluginTest(id, host_functions), |
19 popup_window_test_started_(false) { | 19 popup_window_test_started_(false) { |
20 } | 20 } |
21 | 21 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 } | 94 } |
95 #elif defined(OS_MACOSX) | 95 #elif defined(OS_MACOSX) |
96 bool ExecuteJavascriptPopupWindowTargetPluginTest::CheckWindow( | 96 bool ExecuteJavascriptPopupWindowTargetPluginTest::CheckWindow( |
97 NPWindow* window) { | 97 NPWindow* window) { |
98 // TODO(port) scaffolding--replace with a real test once NPWindow is done. | 98 // TODO(port) scaffolding--replace with a real test once NPWindow is done. |
99 return false; | 99 return false; |
100 } | 100 } |
101 #endif | 101 #endif |
102 | 102 |
103 } // namespace NPAPIClient | 103 } // namespace NPAPIClient |
OLD | NEW |