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

Side by Side Diff: components/sessions/core/live_tab.h

Issue 1350653004: [sessions] Properly namespace recently-componentized TabRestore code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Mac Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 COMPONENTS_SESSIONS_CORE_LIVE_TAB_H_ 5 #ifndef COMPONENTS_SESSIONS_CORE_LIVE_TAB_H_
6 #define COMPONENTS_SESSIONS_CORE_LIVE_TAB_H_ 6 #define COMPONENTS_SESSIONS_CORE_LIVE_TAB_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "components/sessions/serialized_navigation_entry.h" 9 #include "components/sessions/serialized_navigation_entry.h"
10 #include "components/sessions/sessions_export.h" 10 #include "components/sessions/sessions_export.h"
11 11
12 namespace sessions { 12 namespace sessions {
13 13
14 // Interface that represents a currently-live tab to the core sessions code, and 14 // Interface that represents a currently-live tab to the core sessions code, and
15 // in particular, the tab restore service. This interface abstracts the concrete 15 // in particular, the tab restore service. This interface abstracts the concrete
16 // representation of a live tab on different platforms (e.g., WebContents on 16 // representation of a live tab on different platforms (e.g., WebContents on
17 // //content-based platforms). 17 // //content-based platforms).
18 class SESSIONS_EXPORT LiveTab { 18 class SESSIONS_EXPORT LiveTab {
19 public: 19 public:
20 virtual ~LiveTab() {} 20 virtual ~LiveTab() {}
21 21
22 // Methods that return information about the navigation state of the tab. 22 // Methods that return information about the navigation state of the tab.
23 virtual int GetCurrentEntryIndex() = 0; 23 virtual int GetCurrentEntryIndex() = 0;
24 virtual int GetPendingEntryIndex() = 0; 24 virtual int GetPendingEntryIndex() = 0;
25 virtual sessions::SerializedNavigationEntry GetEntryAtIndex(int index) = 0; 25 virtual SerializedNavigationEntry GetEntryAtIndex(int index) = 0;
26 virtual sessions::SerializedNavigationEntry GetPendingEntry() = 0; 26 virtual SerializedNavigationEntry GetPendingEntry() = 0;
27 virtual int GetEntryCount() = 0; 27 virtual int GetEntryCount() = 0;
28 28
29 // Loads the current page if necessary (where "necessary" is defined on a 29 // Loads the current page if necessary (where "necessary" is defined on a
30 // platform-specific basis). 30 // platform-specific basis).
31 virtual void LoadIfNecessary() = 0; 31 virtual void LoadIfNecessary() = 0;
32 32
33 // Returns the user agent override, if any. 33 // Returns the user agent override, if any.
34 virtual const std::string& GetUserAgentOverride() const = 0; 34 virtual const std::string& GetUserAgentOverride() const = 0;
35 }; 35 };
36 36
37 } // namespace sessions 37 } // namespace sessions
38 38
39 #endif // COMPONENTS_SESSIONS_CORE_LIVE_TAB_H_ 39 #endif // COMPONENTS_SESSIONS_CORE_LIVE_TAB_H_
OLDNEW
« no previous file with comments | « components/sessions/core/in_memory_tab_restore_service.cc ('k') | components/sessions/core/persistent_tab_restore_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698