OLD | NEW |
1 // Copyright (c) 2010 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 "webkit/glue/plugins/test/plugin_geturl_test.h" | 5 #include "webkit/plugins/npapi/test/plugin_geturl_test.h" |
6 | 6 |
7 #include <stdio.h> | 7 #include <stdio.h> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
11 #include "base/string_number_conversions.h" | 11 #include "base/string_number_conversions.h" |
12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
13 | 13 |
14 // url for "self". The %22%22 is to make a statement for javascript to | 14 // url for "self". The %22%22 is to make a statement for javascript to |
15 // evaluate and return. | 15 // evaluate and return. |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 int32_t status, | 405 int32_t status, |
406 void* notify_data) { | 406 void* notify_data) { |
407 if (!base::strcasecmp(url, "http://mock.http/npapi/plugin_read_page.html")) { | 407 if (!base::strcasecmp(url, "http://mock.http/npapi/plugin_read_page.html")) { |
408 received_url_redirect_notification_ = true; | 408 received_url_redirect_notification_ = true; |
409 // Disallow redirect notification. | 409 // Disallow redirect notification. |
410 HostFunctions()->urlredirectresponse(id(), notify_data, false); | 410 HostFunctions()->urlredirectresponse(id(), notify_data, false); |
411 } | 411 } |
412 } | 412 } |
413 | 413 |
414 } // namespace NPAPIClient | 414 } // namespace NPAPIClient |
OLD | NEW |