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

Unified Diff: chrome/browser/sessions/persistent_tab_restore_service.cc

Issue 1336823003: Move chrome::HostDesktopType to ui::HostDesktopType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@base_session_service_delegate_impl
Patch Set: Fix build on Mac and CrOS Created 5 years, 3 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: chrome/browser/sessions/persistent_tab_restore_service.cc
diff --git a/chrome/browser/sessions/persistent_tab_restore_service.cc b/chrome/browser/sessions/persistent_tab_restore_service.cc
index 6d770e0c36d9e5830cabeb4a0292e8e52a9f2c75..789a6fd07c9abf80fe79535a5f61d5acf3c9617b 100644
--- a/chrome/browser/sessions/persistent_tab_restore_service.cc
+++ b/chrome/browser/sessions/persistent_tab_restore_service.cc
@@ -974,7 +974,7 @@ const TabRestoreService::Entries& PersistentTabRestoreService::entries() const {
std::vector<content::WebContents*>
PersistentTabRestoreService::RestoreMostRecentEntry(
TabRestoreServiceDelegate* delegate,
- chrome::HostDesktopType host_desktop_type) {
+ ui::HostDesktopType host_desktop_type) {
return helper_.RestoreMostRecentEntry(delegate, host_desktop_type);
}
@@ -984,11 +984,11 @@ TabRestoreService::Tab* PersistentTabRestoreService::RemoveTabEntryById(
}
std::vector<content::WebContents*>
- PersistentTabRestoreService::RestoreEntryById(
- TabRestoreServiceDelegate* delegate,
- SessionID::id_type id,
- chrome::HostDesktopType host_desktop_type,
- WindowOpenDisposition disposition) {
+PersistentTabRestoreService::RestoreEntryById(
+ TabRestoreServiceDelegate* delegate,
+ SessionID::id_type id,
+ ui::HostDesktopType host_desktop_type,
+ WindowOpenDisposition disposition) {
return helper_.RestoreEntryById(delegate, id, host_desktop_type, disposition);
}

Powered by Google App Engine
This is Rietveld 408576698