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

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: Response to review 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
« no previous file with comments | « components/sessions/core/session_constants.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 GetLastSessionCallback;
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 // Returns whether there is a previous session to load.
36 virtual bool HasLastSession() = 0;
37
38 // Fetches the contents of the last session, notifying the callback when
39 // done. If the callback is supplied an empty vector of SessionWindows
40 // it means the session could not be restored.
41 virtual void GetLastSession(const GetLastSessionCallback& callback,
42 base::CancelableTaskTracker* tracker) = 0;
43 };
44
45 } // namespace sessions
46
47 #endif // COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_CLIENT_H_
OLDNEW
« no previous file with comments | « components/sessions/core/session_constants.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698