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

Unified Diff: content/renderer/renderer_webidbfactory_impl.h

Issue 8202003: IndexedDB: Update calls to and implementations of WebIDBFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/renderer/renderer_webidbfactory_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_webidbfactory_impl.h
diff --git a/content/renderer/renderer_webidbfactory_impl.h b/content/renderer/renderer_webidbfactory_impl.h
index a04f2dac9f71f7f8e9416949fe6aae3ef4a82917..d2dc1748b900c9074f2e3673bdb78b7e8fb42192 100644
--- a/content/renderer/renderer_webidbfactory_impl.h
+++ b/content/renderer/renderer_webidbfactory_impl.h
@@ -28,34 +28,20 @@ class RendererWebIDBFactoryImpl : public WebKit::WebIDBFactory {
WebKit::WebIDBCallbacks* callbacks,
const WebKit::WebSecurityOrigin& origin,
WebKit::WebFrame* web_frame,
- const WebKit::WebString& data_dir,
- // TODO(dgrogan): Remove maximum_size after it's out of the webkit api.
- unsigned long long maximum_size,
- WebKit::WebIDBFactory::BackingStoreType);
+ const WebKit::WebString& data_dir);
virtual void open(
const WebKit::WebString& name,
WebKit::WebIDBCallbacks* callbacks,
const WebKit::WebSecurityOrigin& origin,
WebKit::WebFrame* web_frame,
- const WebKit::WebString& data_dir,
- // TODO(dgrogan): Remove maximum_size after it's out of the webkit api.
- unsigned long long maximum_size,
- WebKit::WebIDBFactory::BackingStoreType);
- // FIXME(jochen): remove after webkit roll.
- virtual void deleteDatabase(
- const WebKit::WebString& name,
- WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebSecurityOrigin& origin,
- WebKit::WebFrame* web_frame,
const WebKit::WebString& data_dir);
virtual void deleteDatabase(
const WebKit::WebString& name,
WebKit::WebIDBCallbacks* callbacks,
const WebKit::WebSecurityOrigin& origin,
WebKit::WebFrame* web_frame,
- const WebKit::WebString& data_dir,
- WebKit::WebIDBFactory::BackingStoreType);
+ const WebKit::WebString& data_dir);
};
#endif // CONTENT_RENDERER_RENDERER_WEBIDBFACTORY_IMPL_H_
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/renderer/renderer_webidbfactory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698