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

Side by Side Diff: chrome/browser/sessions/session_restore.h

Issue 2798143004: Fix for URL opening code (Closed)
Patch Set: Fixed class name usage. Created 3 years, 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_RESTORE_H_ 5 #ifndef CHROME_BROWSER_SESSIONS_SESSION_RESTORE_H_
6 #define CHROME_BROWSER_SESSIONS_SESSION_RESTORE_H_ 6 #define CHROME_BROWSER_SESSIONS_SESSION_RESTORE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 // Returns true if synchronously restoring a session. 94 // Returns true if synchronously restoring a session.
95 static bool IsRestoringSynchronously(); 95 static bool IsRestoringSynchronously();
96 96
97 // Registers a callback that is notified every time session restore completes. 97 // Registers a callback that is notified every time session restore completes.
98 // Note that 'complete' means all the browsers and tabs have been created but 98 // Note that 'complete' means all the browsers and tabs have been created but
99 // have not necessarily finished loading. The integer supplied to the callback 99 // have not necessarily finished loading. The integer supplied to the callback
100 // indicates the number of tabs that were created. 100 // indicates the number of tabs that were created.
101 static CallbackSubscription RegisterOnSessionRestoredCallback( 101 static CallbackSubscription RegisterOnSessionRestoredCallback(
102 const base::Callback<void(int)>& callback); 102 const base::Callback<void(int)>& callback);
103 103
104 // Add |urls| to URLs-to-open list, so that they will be opened after session
105 // URLs when session is restored.
106 static void AddURLsToOpen(const Profile* profile,
107 const std::vector<GURL>& urls);
108
104 private: 109 private:
105 SessionRestore(); 110 SessionRestore();
106 111
107 // Accessor for |*on_session_restored_callbacks_|. Creates a new object the 112 // Accessor for |*on_session_restored_callbacks_|. Creates a new object the
108 // first time so that it always returns a valid object. 113 // first time so that it always returns a valid object.
109 static CallbackList* on_session_restored_callbacks() { 114 static CallbackList* on_session_restored_callbacks() {
110 if (!on_session_restored_callbacks_) 115 if (!on_session_restored_callbacks_)
111 on_session_restored_callbacks_ = new CallbackList(); 116 on_session_restored_callbacks_ = new CallbackList();
112 return on_session_restored_callbacks_; 117 return on_session_restored_callbacks_;
113 } 118 }
114 119
115 // Contains all registered callbacks for session restore notifications. 120 // Contains all registered callbacks for session restore notifications.
116 static CallbackList* on_session_restored_callbacks_; 121 static CallbackList* on_session_restored_callbacks_;
117 122
118 DISALLOW_COPY_AND_ASSIGN(SessionRestore); 123 DISALLOW_COPY_AND_ASSIGN(SessionRestore);
119 }; 124 };
120 125
121 #endif // CHROME_BROWSER_SESSIONS_SESSION_RESTORE_H_ 126 #endif // CHROME_BROWSER_SESSIONS_SESSION_RESTORE_H_
OLDNEW
« no previous file with comments | « chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc ('k') | chrome/browser/sessions/session_restore.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698