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

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

Issue 147248: DOM Storage: Add renderer-process IPC code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « chrome/worker/worker_webkitclient_impl.h ('k') | webkit/api/public/WebKitClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/worker/worker_thread.h" 8 #include "chrome/worker/worker_thread.h"
9 #include "webkit/api/public/WebString.h" 9 #include "webkit/api/public/WebString.h"
10 #include "webkit/api/public/WebURL.h" 10 #include "webkit/api/public/WebURL.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 bool WorkerWebKitClientImpl::getFileSize(const WebKit::WebString& path, 55 bool WorkerWebKitClientImpl::getFileSize(const WebKit::WebString& path,
56 long long& result) { 56 long long& result) {
57 NOTREACHED(); 57 NOTREACHED();
58 return false; 58 return false;
59 } 59 }
60 60
61 WebKit::WebString WorkerWebKitClientImpl::defaultLocale() { 61 WebKit::WebString WorkerWebKitClientImpl::defaultLocale() {
62 NOTREACHED(); 62 NOTREACHED();
63 return WebKit::WebString(); 63 return WebKit::WebString();
64 } 64 }
65
66 WebKit::WebStorageNamespace*
67 WorkerWebKitClientImpl::createLocalStorageNamespace(
68 const WebKit::WebString& path) {
69 NOTREACHED();
70 return 0;
71 }
72
73 WebKit::WebStorageNamespace*
74 WorkerWebKitClientImpl::createSessionStorageNamespace() {
75 NOTREACHED();
76 return 0;
77 }
OLDNEW
« no previous file with comments | « chrome/worker/worker_webkitclient_impl.h ('k') | webkit/api/public/WebKitClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698