| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/plugins/ppapi/mock_plugin_delegate.h" | 5 #include "webkit/plugins/ppapi/mock_plugin_delegate.h" |
| 6 | 6 |
| 7 #include "base/message_loop_proxy.h" | 7 #include "base/message_loop_proxy.h" |
| 8 #include "ppapi/c/pp_errors.h" | 8 #include "ppapi/c/pp_errors.h" |
| 9 #include "ppapi/shared_impl/ppapi_preferences.h" | 9 #include "ppapi/shared_impl/ppapi_preferences.h" |
| 10 | 10 |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 | 249 |
| 250 void MockPluginDelegate::DidStartLoading() { | 250 void MockPluginDelegate::DidStartLoading() { |
| 251 } | 251 } |
| 252 | 252 |
| 253 void MockPluginDelegate::DidStopLoading() { | 253 void MockPluginDelegate::DidStopLoading() { |
| 254 } | 254 } |
| 255 | 255 |
| 256 void MockPluginDelegate::SetContentRestriction(int restrictions) { | 256 void MockPluginDelegate::SetContentRestriction(int restrictions) { |
| 257 } | 257 } |
| 258 | 258 |
| 259 void MockPluginDelegate::HasUnsupportedFeature() { | |
| 260 } | |
| 261 | |
| 262 void MockPluginDelegate::SaveURLAs(const GURL& url) { | 259 void MockPluginDelegate::SaveURLAs(const GURL& url) { |
| 263 } | 260 } |
| 264 | 261 |
| 265 P2PSocketDispatcher* MockPluginDelegate::GetP2PSocketDispatcher() { | 262 P2PSocketDispatcher* MockPluginDelegate::GetP2PSocketDispatcher() { |
| 266 return NULL; | 263 return NULL; |
| 267 } | 264 } |
| 268 | 265 |
| 269 webkit_glue::P2PTransport* MockPluginDelegate::CreateP2PTransport() { | 266 webkit_glue::P2PTransport* MockPluginDelegate::CreateP2PTransport() { |
| 270 return NULL; | 267 return NULL; |
| 271 } | 268 } |
| (...skipping 10 matching lines...) Expand all Loading... |
| 282 uint32_t size) { | 279 uint32_t size) { |
| 283 return NULL; | 280 return NULL; |
| 284 } | 281 } |
| 285 | 282 |
| 286 ::ppapi::Preferences MockPluginDelegate::GetPreferences() { | 283 ::ppapi::Preferences MockPluginDelegate::GetPreferences() { |
| 287 return ::ppapi::Preferences(); | 284 return ::ppapi::Preferences(); |
| 288 } | 285 } |
| 289 | 286 |
| 290 } // namespace ppapi | 287 } // namespace ppapi |
| 291 } // namespace webkit | 288 } // namespace webkit |
| OLD | NEW |