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

Unified Diff: chrome/browser/browser.h

Issue 3325012: Fix SessionStorage (Closed)
Patch Set: kill the last (new) dcheck Created 10 years, 3 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 | « no previous file | chrome/browser/browser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser.h
diff --git a/chrome/browser/browser.h b/chrome/browser/browser.h
index 3637871bc08488ff8ed85eca10ce627fd2048eed..8b6e779611a292228a12764a1f112e92aaa1bd15 100644
--- a/chrome/browser/browser.h
+++ b/chrome/browser/browser.h
@@ -37,6 +37,7 @@ class Extension;
class FindBarController;
class PrefService;
class Profile;
+class SessionStorageNamespace;
class SkBitmap;
class StatusBubble;
class TabNavigation;
@@ -370,7 +371,8 @@ class Browser : public TabStripModelDelegate,
const std::string& extension_app_id,
bool select,
bool pin,
- bool from_last_session);
+ bool from_last_session,
+ SessionStorageNamespace* storage_namespace);
// Creates a new tab with the already-created TabContents 'new_contents'.
// The window for the added contents will be reparented correctly when this
// method returns. If |disposition| is NEW_POPUP, |pos| should hold the
@@ -401,7 +403,8 @@ class Browser : public TabStripModelDelegate,
const std::vector<TabNavigation>& navigations,
int selected_navigation,
bool from_last_session,
- const std::string& extension_app_id);
+ const std::string& extension_app_id,
+ SessionStorageNamespace* session_storage_namespace);
// Navigate to an index in the tab history, opening a new tab depending on the
// disposition.
« no previous file with comments | « no previous file | chrome/browser/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698