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

Unified Diff: ios/shared/chrome/browser/ui/browser_list/browser_list_session_service.h

Issue 2858283002: [ios] Add session saving support to clean skeleton. (Closed)
Patch Set: Address comments. Created 3 years, 7 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
Index: ios/shared/chrome/browser/ui/browser_list/browser_list_session_service.h
diff --git a/ios/shared/chrome/browser/ui/browser_list/browser_list_session_service.h b/ios/shared/chrome/browser/ui/browser_list/browser_list_session_service.h
new file mode 100644
index 0000000000000000000000000000000000000000..c4803b28665ba99e5dbcc5a3c94264e5e033c27e
--- /dev/null
+++ b/ios/shared/chrome/browser/ui/browser_list/browser_list_session_service.h
@@ -0,0 +1,34 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef IOS_SHARED_CHROME_BROWSER_UI_BROWSER_LIST_BROWSER_LIST_SESSION_SERVICE_H_
+#define IOS_SHARED_CHROME_BROWSER_UI_BROWSER_LIST_BROWSER_LIST_SESSION_SERVICE_H_
+
+#include "base/macros.h"
+#include "components/keyed_service/core/keyed_service.h"
+
+// BrowserListSessionService allow saving and restoring saved sessions.
+class BrowserListSessionService : public KeyedService {
+ public:
+ BrowserListSessionService() = default;
+ ~BrowserListSessionService() override = default;
+
+ // Restores the saved session on the current thread. Returns whether the
+ // load was successful or not.
+ virtual bool RestoreSession() = 0;
+
+ // Schedules deletion of the file containing the last session.
+ virtual void ScheduleLastSessionDeletion() = 0;
+
+ // Schedules recording the session on a background thread. If |immediately|
+ // is false, then the session is recorded after a delay. In all cases, if
+ // another session recording was previously scheduled with a delay, that will
+ // be cancelled.
+ virtual void ScheduleSaveSession(bool immediately) = 0;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(BrowserListSessionService);
+};
+
+#endif // IOS_SHARED_CHROME_BROWSER_UI_BROWSER_LIST_BROWSER_LIST_SESSION_SERVICE_H_

Powered by Google App Engine
This is Rietveld 408576698