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

Unified Diff: content/renderer/renderer_webstoragearea_impl.h

Issue 6915017: Chrome side to allow WebKit layer to use WebPermissionClient to check if access to local storage ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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/renderer/DEPS ('k') | content/renderer/renderer_webstoragearea_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_webstoragearea_impl.h
===================================================================
--- content/renderer/renderer_webstoragearea_impl.h (revision 83945)
+++ content/renderer/renderer_webstoragearea_impl.h (working copy)
@@ -7,13 +7,15 @@
#pragma once
#include "base/basictypes.h"
+#include "content/common/dom_storage_common.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageArea.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h"
class RendererWebStorageAreaImpl : public WebKit::WebStorageArea {
public:
RendererWebStorageAreaImpl(int64 namespace_id,
- const WebKit::WebString& origin);
+ const WebKit::WebString& origin,
+ DOMStorageType storage_type);
virtual ~RendererWebStorageAreaImpl();
// See WebStorageArea.h for documentation on these functions.
@@ -32,6 +34,8 @@
private:
// The ID we use for all IPC.
int64 storage_area_id_;
+
+ const DOMStorageType storage_type_;
};
#endif // CONTENT_RENDERER_RENDERER_WEBSTORAGEAREA_IMPL_H_
« no previous file with comments | « content/renderer/DEPS ('k') | content/renderer/renderer_webstoragearea_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698