Chromium Code Reviews| Index: content/browser/renderer_host/render_view_host_delegate.h |
| diff --git a/content/browser/renderer_host/render_view_host_delegate.h b/content/browser/renderer_host/render_view_host_delegate.h |
| index 51fc3dc5057fcc1449ad7bcc6e6a536533e20117..7bd6c5926d872ce3305bc6a6eab1a57b8c9c7926 100644 |
| --- a/content/browser/renderer_host/render_view_host_delegate.h |
| +++ b/content/browser/renderer_host/render_view_host_delegate.h |
| @@ -12,6 +12,8 @@ |
| #include "base/process/kill.h" |
| #include "base/strings/string16.h" |
| #include "content/common/content_export.h" |
| +#include "content/public/browser/navigation_controller.h" |
|
jsbell
2014/06/03 16:56:39
Is this include needed here?
michaeln
2014/06/03 18:58:09
Yes, that's where the SessionStorageNamespaceMap t
|
| +#include "content/public/browser/session_storage_namespace.h" |
| #include "content/public/common/media_stream_request.h" |
| #include "content/public/common/page_transition_types.h" |
| #include "net/base/load_states.h" |
| @@ -277,6 +279,10 @@ class CONTENT_EXPORT RenderViewHostDelegate { |
| virtual SessionStorageNamespace* GetSessionStorageNamespace( |
| SiteInstance* instance); |
| + // Returns a copy of the map of all session storage namespaces related |
| + // to this view. |
| + virtual SessionStorageNamespaceMap GetSessionStorageNamespaceMap(); |
| + |
| // Returns true if the RenderViewHost will never be visible. |
| virtual bool IsNeverVisible(); |