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

Side by Side Diff: chrome/browser/in_process_webkit/browser_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
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/browser/in_process_webkit/browser_webkitclient_impl.h" 5 #include "chrome/browser/in_process_webkit/browser_webkitclient_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "webkit/api/public/WebData.h" 8 #include "webkit/api/public/WebData.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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 void BrowserWebKitClientImpl::getPluginList(bool refresh, 76 void BrowserWebKitClientImpl::getPluginList(bool refresh,
77 WebKit::WebPluginListBuilder* builder) { 77 WebKit::WebPluginListBuilder* builder) {
78 NOTREACHED(); 78 NOTREACHED();
79 } 79 }
80 80
81 WebKit::WebData BrowserWebKitClientImpl::loadResource(const char* name) { 81 WebKit::WebData BrowserWebKitClientImpl::loadResource(const char* name) {
82 NOTREACHED(); 82 NOTREACHED();
83 return WebKit::WebData(); 83 return WebKit::WebData();
84 } 84 }
85
86 WebKit::WebStorageNamespace*
87 BrowserWebKitClientImpl::createLocalStorageNamespace(
88 const WebKit::WebString& path) {
89 // The "WebStorage" interface is used for renderer WebKit -> browser WebKit
90 // communication only. "WebStorageClient" will be used for browser WebKit ->
91 // renderer WebKit. So this will never be implemented.
92 NOTREACHED();
93 return 0;
94 }
95
96 WebKit::WebStorageNamespace*
97 BrowserWebKitClientImpl::createSessionStorageNamespace() {
98 // The "WebStorage" interface is used for renderer WebKit -> browser WebKit
99 // communication only. "WebStorageClient" will be used for browser WebKit ->
100 // renderer WebKit. So this will never be implemented.
101 NOTREACHED();
102 return 0;
103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698