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

Side by Side Diff: chrome/worker/worker_webkitclient_impl.cc

Issue 545054: Introduce all the plumbing for Session Storage. This mostly consists of crea... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 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) 2009 The Chromium Authors. All rights reserved. Use of this 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the 2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file. 3 // LICENSE file.
4 4
5 #include "chrome/worker/worker_webkitclient_impl.h" 5 #include "chrome/worker/worker_webkitclient_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/common/webmessageportchannel_impl.h" 8 #include "chrome/common/webmessageportchannel_impl.h"
9 #include "chrome/worker/worker_thread.h" 9 #include "chrome/worker/worker_thread.h"
10 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" 10 #include "third_party/WebKit/WebKit/chromium/public/WebString.h"
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 NOTREACHED(); 82 NOTREACHED();
83 return WebString(); 83 return WebString();
84 } 84 }
85 85
86 WebStorageNamespace* WorkerWebKitClientImpl::createLocalStorageNamespace( 86 WebStorageNamespace* WorkerWebKitClientImpl::createLocalStorageNamespace(
87 const WebString& path, unsigned quota) { 87 const WebString& path, unsigned quota) {
88 NOTREACHED(); 88 NOTREACHED();
89 return 0; 89 return 0;
90 } 90 }
91 91
92 WebStorageNamespace* WorkerWebKitClientImpl::createSessionStorageNamespace() {
93 NOTREACHED();
94 return 0;
95 }
96
97 void WorkerWebKitClientImpl::dispatchStorageEvent( 92 void WorkerWebKitClientImpl::dispatchStorageEvent(
98 const WebString& key, const WebString& old_value, 93 const WebString& key, const WebString& old_value,
99 const WebString& new_value, const WebString& origin, 94 const WebString& new_value, const WebString& origin,
100 const WebKit::WebURL& url, bool is_local_storage) { 95 const WebKit::WebURL& url, bool is_local_storage) {
101 NOTREACHED(); 96 NOTREACHED();
102 } 97 }
103 98
104 WebSharedWorkerRepository* WorkerWebKitClientImpl::sharedWorkerRepository() { 99 WebSharedWorkerRepository* WorkerWebKitClientImpl::sharedWorkerRepository() {
105 return 0; 100 return 0;
106 } 101 }
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 WebString WorkerWebKitClientImpl::mimeTypeFromFile(const WebString&) { 137 WebString WorkerWebKitClientImpl::mimeTypeFromFile(const WebString&) {
143 NOTREACHED(); 138 NOTREACHED();
144 return WebString(); 139 return WebString();
145 } 140 }
146 141
147 WebString WorkerWebKitClientImpl::preferredExtensionForMIMEType( 142 WebString WorkerWebKitClientImpl::preferredExtensionForMIMEType(
148 const WebString&) { 143 const WebString&) {
149 NOTREACHED(); 144 NOTREACHED();
150 return WebString(); 145 return WebString();
151 } 146 }
OLDNEW
« no previous file with comments | « chrome/worker/worker_webkitclient_impl.h ('k') | webkit/tools/test_shell/test_shell_webkit_init.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698