| 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/persistent_tab_restore_service.h" | 5 #include "chrome/browser/sessions/persistent_tab_restore_service.h" |
| 6 | 6 |
| 7 #include <cstring> // memcpy | 7 #include <cstring> // memcpy |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 } | 935 } |
| 936 | 936 |
| 937 void PersistentTabRestoreService::ClearEntries() { | 937 void PersistentTabRestoreService::ClearEntries() { |
| 938 helper_.ClearEntries(); | 938 helper_.ClearEntries(); |
| 939 } | 939 } |
| 940 | 940 |
| 941 const TabRestoreService::Entries& PersistentTabRestoreService::entries() const { | 941 const TabRestoreService::Entries& PersistentTabRestoreService::entries() const { |
| 942 return helper_.entries(); | 942 return helper_.entries(); |
| 943 } | 943 } |
| 944 | 944 |
| 945 void PersistentTabRestoreService::RestoreMostRecentEntry( | 945 content::WebContents* PersistentTabRestoreService::RestoreMostRecentEntry( |
| 946 TabRestoreServiceDelegate* delegate, | 946 TabRestoreServiceDelegate* delegate, |
| 947 chrome::HostDesktopType host_desktop_type) { | 947 chrome::HostDesktopType host_desktop_type) { |
| 948 helper_.RestoreMostRecentEntry(delegate, host_desktop_type); | 948 return helper_.RestoreMostRecentEntry(delegate, host_desktop_type); |
| 949 } | 949 } |
| 950 | 950 |
| 951 TabRestoreService::Tab* PersistentTabRestoreService::RemoveTabEntryById( | 951 TabRestoreService::Tab* PersistentTabRestoreService::RemoveTabEntryById( |
| 952 SessionID::id_type id) { | 952 SessionID::id_type id) { |
| 953 return helper_.RemoveTabEntryById(id); | 953 return helper_.RemoveTabEntryById(id); |
| 954 } | 954 } |
| 955 | 955 |
| 956 void PersistentTabRestoreService::RestoreEntryById( | 956 content::WebContents* PersistentTabRestoreService::RestoreEntryById( |
| 957 TabRestoreServiceDelegate* delegate, | 957 TabRestoreServiceDelegate* delegate, |
| 958 SessionID::id_type id, | 958 SessionID::id_type id, |
| 959 chrome::HostDesktopType host_desktop_type, | 959 chrome::HostDesktopType host_desktop_type, |
| 960 WindowOpenDisposition disposition) { | 960 WindowOpenDisposition disposition) { |
| 961 helper_.RestoreEntryById(delegate, id, host_desktop_type, disposition); | 961 return helper_.RestoreEntryById(delegate, id, host_desktop_type, disposition); |
| 962 } | 962 } |
| 963 | 963 |
| 964 bool PersistentTabRestoreService::IsLoaded() const { | 964 bool PersistentTabRestoreService::IsLoaded() const { |
| 965 return delegate_->IsLoaded(); | 965 return delegate_->IsLoaded(); |
| 966 } | 966 } |
| 967 | 967 |
| 968 void PersistentTabRestoreService::DeleteLastSession() { | 968 void PersistentTabRestoreService::DeleteLastSession() { |
| 969 return delegate_->DeleteLastSession(); | 969 return delegate_->DeleteLastSession(); |
| 970 } | 970 } |
| 971 | 971 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 982 } | 982 } |
| 983 | 983 |
| 984 void PersistentTabRestoreService::PruneEntries() { | 984 void PersistentTabRestoreService::PruneEntries() { |
| 985 helper_.PruneEntries(); | 985 helper_.PruneEntries(); |
| 986 } | 986 } |
| 987 | 987 |
| 988 BrowserContextKeyedService* TabRestoreServiceFactory::BuildServiceInstanceFor( | 988 BrowserContextKeyedService* TabRestoreServiceFactory::BuildServiceInstanceFor( |
| 989 content::BrowserContext* profile) const { | 989 content::BrowserContext* profile) const { |
| 990 return new PersistentTabRestoreService(static_cast<Profile*>(profile), NULL); | 990 return new PersistentTabRestoreService(static_cast<Profile*>(profile), NULL); |
| 991 } | 991 } |
| OLD | NEW |