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

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

Issue 1319473014: Introduce TabRestoreServiceClient and //chrome implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build fixes 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_CLIENT_H_
6 #define COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_CLIENT_H_
7
8 #include "base/callback.h"
9 #include "base/memory/scoped_vector.h"
10 #include "components/sessions/session_id.h"
11
12 namespace base {
13 class CancelableTaskTracker;
14 }
15
16 namespace sessions {
17 struct SessionWindow;
18 }
19
20 namespace sessions {
21
22 struct SessionWindow;
23
24 // Callback from TabRestoreServiceClient::GetLastSession.
25 // The second parameter is the id of the window that was last active.
26 typedef base::Callback<void(ScopedVector<SessionWindow>, SessionID::id_type)>
27 GotLastSessionCallback;
sky 2015/09/08 23:44:59 nit: GetLastSessionCallback.
blundell 2015/09/09 10:27:10 Done.
28
29 // A client interface that needs to be supplied to the tab restore service by
30 // the embedder.
31 class TabRestoreServiceClient {
32 public:
33 virtual ~TabRestoreServiceClient() {}
34
35 // The maximum number of navigation entries in each direction to persist.
36 virtual int GetMaxPersistNavigationCount() = 0;
sky 2015/09/08 23:44:59 Is there a reason this needs to be a function and
blundell 2015/09/09 10:27:10 Moved it into the component itself. At least at th
37
38 // Returns whether there is a previous session to load.
39 virtual bool HasLastSession() = 0;
40
41 // Fetches the contents of the last session, notifying the callback when
42 // done. If the callback is supplied an empty vector of SessionWindows
43 // it means the session could not be restored.
44 virtual void GetLastSession(const GotLastSessionCallback& callback,
45 base::CancelableTaskTracker* tracker) = 0;
46 };
47
48 } // namespace sessions
49
50 #endif // COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_CLIENT_H_
OLDNEW
« chrome/browser/sessions/tab_restore_service_factory.cc ('K') | « components/sessions/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698