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

Unified Diff: content/browser/renderer_host/render_view_host_impl.h

Issue 10831116: Move SessionStorageNamespace entirely into NavigationController and support StoragePartitions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merged ToT Created 8 years, 4 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
Index: content/browser/renderer_host/render_view_host_impl.h
diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
index d6d9ce9310bae9b88db10d3337b180e419dbc01e..af0d5d2dd7dc203cdeed00a440deecf2007ab253 100644
--- a/content/browser/renderer_host/render_view_host_impl.h
+++ b/content/browser/renderer_host/render_view_host_impl.h
@@ -43,11 +43,6 @@ namespace base {
class ListValue;
}
-namespace content {
-class TestRenderViewHost;
-class PowerSaveBlocker;
-}
-
namespace ui {
class Range;
struct SelectedFileInfo;
@@ -55,11 +50,13 @@ struct SelectedFileInfo;
namespace content {
-class SessionStorageNamespace;
+class PowerSaveBlocker;
class RenderViewHostObserver;
class RenderWidgetHostDelegate;
-struct FileChooserParams;
+class SessionStorageNamespace;
+class TestRenderViewHost;
struct ContextMenuParams;
+struct FileChooserParams;
struct Referrer;
struct ShowDesktopNotificationHostMsgParams;
@@ -204,8 +201,6 @@ class CONTENT_EXPORT RenderViewHostImpl
int permissions) OVERRIDE;
virtual RenderViewHostDelegate* GetDelegate() const OVERRIDE;
virtual int GetEnabledBindings() const OVERRIDE;
- virtual SessionStorageNamespace*
- GetSessionStorageNamespace() OVERRIDE;
virtual SiteInstance* GetSiteInstance() const OVERRIDE;
virtual void InsertCSS(const string16& frame_xpath,
const std::string& css) OVERRIDE;
@@ -368,7 +363,7 @@ class CONTENT_EXPORT RenderViewHostImpl
const WebKit::WebMouseEvent& mouse_event) OVERRIDE;
virtual void OnPointerEventActivate() OVERRIDE;
virtual void ForwardKeyboardEvent(
- const content::NativeWebKeyboardEvent& key_event) OVERRIDE;
+ const NativeWebKeyboardEvent& key_event) OVERRIDE;
virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE;
// Creates a new RenderView with the given route id.
@@ -506,7 +501,7 @@ class CONTENT_EXPORT RenderViewHostImpl
void OnMsgRunJavaScriptMessage(const string16& message,
const string16& default_prompt,
const GURL& frame_url,
- content::JavaScriptMessageType type,
+ JavaScriptMessageType type,
IPC::Message* reply_msg);
void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url,
const string16& message,
@@ -650,7 +645,7 @@ class CONTENT_EXPORT RenderViewHostImpl
// Holds PowerSaveBlockers for the media players in use. Key is the
// player_cookie passed to OnMediaNotification, value is the PowerSaveBlocker.
- typedef std::map<int64, content::PowerSaveBlocker*> PowerSaveBlockerMap;
+ typedef std::map<int64, PowerSaveBlocker*> PowerSaveBlockerMap;
PowerSaveBlockerMap power_save_blockers_;
// A list of observers that filter messages. Weak references.
« no previous file with comments | « content/browser/renderer_host/render_message_filter.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698