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

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

Issue 10990121: We're removing the sharedWorkerRepository() function from WebKit (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 2 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/synchronization/lock.h" 9 #include "base/synchronization/lock.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 return 0; 241 return 0;
242 } 242 }
243 243
244 void PpapiWebKitPlatformSupportImpl::dispatchStorageEvent( 244 void PpapiWebKitPlatformSupportImpl::dispatchStorageEvent(
245 const WebKit::WebString& key, const WebKit::WebString& old_value, 245 const WebKit::WebString& key, const WebKit::WebString& old_value,
246 const WebKit::WebString& new_value, const WebKit::WebString& origin, 246 const WebKit::WebString& new_value, const WebKit::WebString& origin,
247 const WebKit::WebURL& url, bool is_local_storage) { 247 const WebKit::WebURL& url, bool is_local_storage) {
248 NOTREACHED(); 248 NOTREACHED();
249 } 249 }
250 250
251 WebKit::WebSharedWorkerRepository*
252 PpapiWebKitPlatformSupportImpl::sharedWorkerRepository() {
253 NOTREACHED();
254 return NULL;
255 }
256
257 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( 251 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile(
258 const WebKit::WebString& vfs_file_name, bool sync_dir) { 252 const WebKit::WebString& vfs_file_name, bool sync_dir) {
259 NOTREACHED(); 253 NOTREACHED();
260 return 0; 254 return 0;
261 } 255 }
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698