| 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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 968 | 968 |
| 969 TabRestoreService::Entries* PersistentTabRestoreService::mutable_entries() { | 969 TabRestoreService::Entries* PersistentTabRestoreService::mutable_entries() { |
| 970 return &helper_.entries_; | 970 return &helper_.entries_; |
| 971 } | 971 } |
| 972 | 972 |
| 973 void PersistentTabRestoreService::PruneEntries() { | 973 void PersistentTabRestoreService::PruneEntries() { |
| 974 helper_.PruneEntries(); | 974 helper_.PruneEntries(); |
| 975 } | 975 } |
| 976 | 976 |
| 977 ProfileKeyedService* TabRestoreServiceFactory::BuildServiceInstanceFor( | 977 ProfileKeyedService* TabRestoreServiceFactory::BuildServiceInstanceFor( |
| 978 Profile* profile) const { | 978 content::BrowserContext* profile) const { |
| 979 return new PersistentTabRestoreService(profile, NULL); | 979 return new PersistentTabRestoreService(static_cast<Profile*>(profile), NULL); |
| 980 } | 980 } |
| OLD | NEW |