Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc

Issue 17642005: Remove unused arguments from storage-related Chromium impls of Blink API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased after r208825 Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/logging.h" 9 #include "base/logging.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 WebKit::WebPluginListBuilder* builder) { 236 WebKit::WebPluginListBuilder* builder) {
237 NOTREACHED(); 237 NOTREACHED();
238 } 238 }
239 239
240 WebKit::WebData PpapiWebKitPlatformSupportImpl::loadResource(const char* name) { 240 WebKit::WebData PpapiWebKitPlatformSupportImpl::loadResource(const char* name) {
241 NOTREACHED(); 241 NOTREACHED();
242 return WebKit::WebData(); 242 return WebKit::WebData();
243 } 243 }
244 244
245 WebKit::WebStorageNamespace* 245 WebKit::WebStorageNamespace*
246 PpapiWebKitPlatformSupportImpl::createLocalStorageNamespace( 246 PpapiWebKitPlatformSupportImpl::createLocalStorageNamespace() {
247 const WebKit::WebString& path, unsigned quota) {
248 NOTREACHED(); 247 NOTREACHED();
249 return 0; 248 return 0;
250 } 249 }
251 250
252 void PpapiWebKitPlatformSupportImpl::dispatchStorageEvent( 251 void PpapiWebKitPlatformSupportImpl::dispatchStorageEvent(
253 const WebKit::WebString& key, const WebKit::WebString& old_value, 252 const WebKit::WebString& key, const WebKit::WebString& old_value,
254 const WebKit::WebString& new_value, const WebKit::WebString& origin, 253 const WebKit::WebString& new_value, const WebKit::WebString& origin,
255 const WebKit::WebURL& url, bool is_local_storage) { 254 const WebKit::WebURL& url, bool is_local_storage) {
256 NOTREACHED(); 255 NOTREACHED();
257 } 256 }
258 257
259 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( 258 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile(
260 const WebKit::WebString& vfs_file_name, bool sync_dir) { 259 const WebKit::WebString& vfs_file_name, bool sync_dir) {
261 NOTREACHED(); 260 NOTREACHED();
262 return 0; 261 return 0;
263 } 262 }
264 263
265 } // namespace content 264 } // namespace content
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h ('k') | content/renderer/render_view_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698