| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 } | 234 } |
| 235 | 235 |
| 236 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( | 236 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( |
| 237 const WebKit::WebString& vfs_file_name, bool sync_dir) { | 237 const WebKit::WebString& vfs_file_name, bool sync_dir) { |
| 238 NOTREACHED(); | 238 NOTREACHED(); |
| 239 return 0; | 239 return 0; |
| 240 } | 240 } |
| 241 | 241 |
| 242 void PpapiWebKitPlatformSupportImpl::createIDBKeysFromSerializedValuesAndKeyPath
( | 242 void PpapiWebKitPlatformSupportImpl::createIDBKeysFromSerializedValuesAndKeyPath
( |
| 243 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, | 243 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, |
| 244 const WebKit::WebString& keyPath, | 244 const WebKit::WebIDBKeyPath& keyPath, |
| 245 WebKit::WebVector<WebKit::WebIDBKey>& keys) { | 245 WebKit::WebVector<WebKit::WebIDBKey>& keys) { |
| 246 NOTREACHED(); | 246 NOTREACHED(); |
| 247 } | 247 } |
| 248 | 248 |
| 249 WebKit::WebSerializedScriptValue | 249 WebKit::WebSerializedScriptValue |
| 250 PpapiWebKitPlatformSupportImpl::injectIDBKeyIntoSerializedValue( | 250 PpapiWebKitPlatformSupportImpl::injectIDBKeyIntoSerializedValue( |
| 251 const WebKit::WebIDBKey& key, | 251 const WebKit::WebIDBKey& key, |
| 252 const WebKit::WebSerializedScriptValue& value, | 252 const WebKit::WebSerializedScriptValue& value, |
| 253 const WebKit::WebString& keyPath) { | 253 const WebKit::WebIDBKeyPath& keyPath) { |
| 254 NOTREACHED(); | 254 NOTREACHED(); |
| 255 return WebKit::WebSerializedScriptValue(); | 255 return WebKit::WebSerializedScriptValue(); |
| 256 } | 256 } |
| OLD | NEW |