| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SESSIONS_SESSION_TAB_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SESSIONS_SESSION_TAB_HELPER_H_ |
| 6 #define CHROME_BROWSER_SESSIONS_SESSION_TAB_HELPER_H_ | 6 #define CHROME_BROWSER_SESSIONS_SESSION_TAB_HELPER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "chrome/browser/sessions/session_id.h" | 9 #include "chrome/browser/sessions/session_id.h" |
| 10 #include "chrome/browser/tab_contents/web_contents_user_data.h" | 10 #include "chrome/browser/tab_contents/web_contents_user_data.h" |
| 11 #include "content/public/browser/web_contents_observer.h" | 11 #include "content/public/browser/web_contents_observer.h" |
| 12 | 12 |
| 13 // This class keeps the extension API's windowID up-to-date with the current | 13 // This class keeps the extension API's windowID up-to-date with the current |
| 14 // window of the tab. | 14 // window of the tab. |
| 15 class SessionTabHelper : public content::WebContentsObserver, | 15 class SessionTabHelper : public content::WebContentsObserver, |
| 16 public WebContentsUserData<SessionTabHelper> { | 16 public WebContentsUserData<SessionTabHelper> { |
| 17 public: | 17 public: |
| 18 explicit SessionTabHelper(content::WebContents* contents); | |
| 19 virtual ~SessionTabHelper(); | 18 virtual ~SessionTabHelper(); |
| 20 static int kUserDataKey; | |
| 21 | 19 |
| 22 // Returns the identifier used by session restore for this tab. | 20 // Returns the identifier used by session restore for this tab. |
| 23 const SessionID& session_id() const { return session_id_; } | 21 const SessionID& session_id() const { return session_id_; } |
| 24 | 22 |
| 25 // Identifier of the window the tab is in. | 23 // Identifier of the window the tab is in. |
| 26 void SetWindowID(const SessionID& id); | 24 void SetWindowID(const SessionID& id); |
| 27 const SessionID& window_id() const { return window_id_; } | 25 const SessionID& window_id() const { return window_id_; } |
| 28 | 26 |
| 29 // content::WebContentsObserver: | 27 // content::WebContentsObserver: |
| 30 virtual void RenderViewCreated( | 28 virtual void RenderViewCreated( |
| 31 content::RenderViewHost* render_view_host) OVERRIDE; | 29 content::RenderViewHost* render_view_host) OVERRIDE; |
| 32 virtual void UserAgentOverrideSet(const std::string& user_agent) OVERRIDE; | 30 virtual void UserAgentOverrideSet(const std::string& user_agent) OVERRIDE; |
| 33 | 31 |
| 34 private: | 32 private: |
| 33 explicit SessionTabHelper(content::WebContents* contents); |
| 34 static int kUserDataKey; |
| 35 friend class WebContentsUserData<SessionTabHelper>; |
| 36 |
| 35 // Unique identifier of the tab for session restore. This id is only unique | 37 // Unique identifier of the tab for session restore. This id is only unique |
| 36 // within the current session, and is not guaranteed to be unique across | 38 // within the current session, and is not guaranteed to be unique across |
| 37 // sessions. | 39 // sessions. |
| 38 const SessionID session_id_; | 40 const SessionID session_id_; |
| 39 | 41 |
| 40 // Unique identifier of the window the tab is in. | 42 // Unique identifier of the window the tab is in. |
| 41 SessionID window_id_; | 43 SessionID window_id_; |
| 42 | 44 |
| 43 DISALLOW_COPY_AND_ASSIGN(SessionTabHelper); | 45 DISALLOW_COPY_AND_ASSIGN(SessionTabHelper); |
| 44 }; | 46 }; |
| 45 | 47 |
| 46 #endif // CHROME_BROWSER_SESSIONS_SESSION_TAB_HELPER_H_ | 48 #endif // CHROME_BROWSER_SESSIONS_SESSION_TAB_HELPER_H_ |
| OLD | NEW |