| 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_webkitplatformsupport_impl.h" | 5 #include "content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 | 8 |
| 9 #include "base/synchronization/lock.h" | 9 #include "base/synchronization/lock.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 PpapiWebKitPlatformSupportImpl::sharedWorkerRepository() { | 252 PpapiWebKitPlatformSupportImpl::sharedWorkerRepository() { |
| 253 NOTREACHED(); | 253 NOTREACHED(); |
| 254 return NULL; | 254 return NULL; |
| 255 } | 255 } |
| 256 | 256 |
| 257 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( | 257 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( |
| 258 const WebKit::WebString& vfs_file_name, bool sync_dir) { | 258 const WebKit::WebString& vfs_file_name, bool sync_dir) { |
| 259 NOTREACHED(); | 259 NOTREACHED(); |
| 260 return 0; | 260 return 0; |
| 261 } | 261 } |
| 262 |
| 263 void PpapiWebKitPlatformSupportImpl::createIDBKeysFromSerializedValuesAndKeyPath
( |
| 264 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, |
| 265 const WebKit::WebIDBKeyPath& keyPath, |
| 266 WebKit::WebVector<WebKit::WebIDBKey>& keys) { |
| 267 NOTREACHED(); |
| 268 } |
| 269 |
| 270 WebKit::WebSerializedScriptValue |
| 271 PpapiWebKitPlatformSupportImpl::injectIDBKeyIntoSerializedValue( |
| 272 const WebKit::WebIDBKey& key, |
| 273 const WebKit::WebSerializedScriptValue& value, |
| 274 const WebKit::WebIDBKeyPath& keyPath) { |
| 275 NOTREACHED(); |
| 276 return WebKit::WebSerializedScriptValue(); |
| 277 } |
| OLD | NEW |