OLD | NEW |
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 #include "chrome/browser/sessions/session_restore.h" | 5 #include "chrome/browser/sessions/session_restore.h" |
6 | 6 |
7 #include "chrome/browser/profiles/profile.h" | 7 #include "chrome/browser/profiles/profile.h" |
8 #include "chrome/browser/sessions/session_types.h" | 8 #include "chrome/browser/sessions/session_types.h" |
9 #include "webkit/glue/window_open_disposition.h" | 9 #include "webkit/glue/window_open_disposition.h" |
10 | 10 |
11 // static | 11 // static |
12 void SessionRestore::RestoreForeignSessionTab( | 12 void SessionRestore::RestoreForeignSessionTab( |
13 content::WebContents* source_web_contents, | 13 content::WebContents* source_web_contents, |
14 const SessionTab& session_tab, | 14 const SessionTab& session_tab, |
15 WindowOpenDisposition disposition) { | 15 WindowOpenDisposition disposition) { |
16 NOTIMPLEMENTED() << "TODO(yfriedman): Upstream this."; | 16 NOTIMPLEMENTED() << "TODO(yfriedman, dtrainor): Upstream this."; |
17 } | 17 } |
18 | 18 |
19 // static | 19 // static |
20 void SessionRestore::RestoreForeignSessionWindows( | 20 void SessionRestore::RestoreForeignSessionWindows( |
21 Profile* profile, | 21 Profile* profile, |
22 std::vector<const SessionWindow*>::const_iterator begin, | 22 std::vector<const SessionWindow*>::const_iterator begin, |
23 std::vector<const SessionWindow*>::const_iterator end) { | 23 std::vector<const SessionWindow*>::const_iterator end) { |
24 NOTREACHED(); | 24 NOTREACHED(); |
25 } | 25 } |
OLD | NEW |