| 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/test/plugin/plugin_client.h" | 5 #include "content/test/plugin/plugin_client.h" |
| 6 | 6 |
| 7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
| 8 #include "content/test/plugin/plugin_execute_stream_javascript.h" | 8 #include "content/test/plugin/plugin_execute_stream_javascript.h" |
| 9 #include "content/test/plugin/plugin_test.h" | 9 #include "content/test/plugin/plugin_test.h" |
| 10 #include "content/test/plugin/plugin_test_factory.h" | 10 #include "content/test/plugin/plugin_test_factory.h" |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 if (instance) { | 257 if (instance) { |
| 258 NPAPIClient::PluginTest* plugin = | 258 NPAPIClient::PluginTest* plugin = |
| 259 reinterpret_cast<NPAPIClient::PluginTest*>(instance->pdata); | 259 reinterpret_cast<NPAPIClient::PluginTest*>(instance->pdata); |
| 260 plugin->URLRedirectNotify(url, status, notify_data); | 260 plugin->URLRedirectNotify(url, status, notify_data); |
| 261 } | 261 } |
| 262 } | 262 } |
| 263 | 263 |
| 264 NPError NPP_ClearSiteData(const char* site, | 264 NPError NPP_ClearSiteData(const char* site, |
| 265 uint64 flags, | 265 uint64 flags, |
| 266 uint64 max_age) { | 266 uint64 max_age) { |
| 267 LOG(INFO) << "NPP_ClearSiteData called"; | 267 VLOG(0) << "NPP_ClearSiteData called"; |
| 268 return NPERR_NO_ERROR; | 268 return NPERR_NO_ERROR; |
| 269 } | 269 } |
| 270 } // extern "C" | 270 } // extern "C" |
| OLD | NEW |