| 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/ppapi_plugin/ppapi_blink_platform_impl.h" | 5 #include "content/ppapi_plugin/ppapi_blink_platform_impl.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 return NULL; | 208 return NULL; |
| 209 } | 209 } |
| 210 | 210 |
| 211 blink::WebURLLoader* PpapiBlinkPlatformImpl::createURLLoader() { | 211 blink::WebURLLoader* PpapiBlinkPlatformImpl::createURLLoader() { |
| 212 NOTREACHED(); | 212 NOTREACHED(); |
| 213 return NULL; | 213 return NULL; |
| 214 } | 214 } |
| 215 | 215 |
| 216 void PpapiBlinkPlatformImpl::getPluginList( | 216 void PpapiBlinkPlatformImpl::getPluginList( |
| 217 bool refresh, | 217 bool refresh, |
| 218 const blink::WebSecurityOrigin* origin, |
| 218 blink::WebPluginListBuilder* builder) { | 219 blink::WebPluginListBuilder* builder) { |
| 219 NOTREACHED(); | 220 NOTREACHED(); |
| 220 } | 221 } |
| 221 | 222 |
| 222 blink::WebData PpapiBlinkPlatformImpl::loadResource(const char* name) { | 223 blink::WebData PpapiBlinkPlatformImpl::loadResource(const char* name) { |
| 223 NOTREACHED(); | 224 NOTREACHED(); |
| 224 return blink::WebData(); | 225 return blink::WebData(); |
| 225 } | 226 } |
| 226 | 227 |
| 227 blink::WebStorageNamespace* | 228 blink::WebStorageNamespace* |
| (...skipping 13 matching lines...) Expand all Loading... |
| 241 } | 242 } |
| 242 | 243 |
| 243 int PpapiBlinkPlatformImpl::databaseDeleteFile( | 244 int PpapiBlinkPlatformImpl::databaseDeleteFile( |
| 244 const blink::WebString& vfs_file_name, | 245 const blink::WebString& vfs_file_name, |
| 245 bool sync_dir) { | 246 bool sync_dir) { |
| 246 NOTREACHED(); | 247 NOTREACHED(); |
| 247 return 0; | 248 return 0; |
| 248 } | 249 } |
| 249 | 250 |
| 250 } // namespace content | 251 } // namespace content |
| OLD | NEW |