| 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/tabs/pinned_tab_codec.h" | 5 #include "chrome/browser/tabs/pinned_tab_codec.h" |
| 6 | 6 |
| 7 #include "base/values.h" | 7 #include "base/values.h" |
| 8 #include "chrome/browser/extensions/extension_tab_helper.h" | 8 #include "chrome/browser/extensions/extension_tab_helper.h" |
| 9 #include "chrome/browser/prefs/pref_service.h" | 9 #include "chrome/browser/prefs/pref_service.h" |
| 10 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 10 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
| 11 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
| 12 #include "chrome/browser/tabs/tab_strip_model.h" | 12 #include "chrome/browser/tabs/tab_strip_model.h" |
| 13 #include "chrome/browser/ui/browser.h" | 13 #include "chrome/browser/ui/browser.h" |
| 14 #include "chrome/browser/ui/browser_list.h" | 14 #include "chrome/browser/ui/browser_list.h" |
| 15 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 15 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
| 16 #include "chrome/common/extensions/extension.h" | 16 #include "chrome/common/extensions/extension.h" |
| 17 #include "chrome/common/pref_names.h" | 17 #include "chrome/common/pref_names.h" |
| 18 #include "content/public/browser/navigation_entry.h" | 18 #include "content/public/browser/navigation_entry.h" |
| 19 #include "content/public/browser/web_contents.h" | 19 #include "content/public/browser/web_contents.h" |
| 20 | 20 |
| 21 using content::NavigationEntry; | 21 using content::NavigationEntry; |
| 22 | 22 |
| 23 typedef BrowserInit::LaunchWithProfile::Tab Tab; | 23 typedef StartupBrowserCreator::LaunchWithProfile::Tab Tab; |
| 24 | 24 |
| 25 // Key used in dictionaries for the app id. | 25 // Key used in dictionaries for the app id. |
| 26 static const char kAppID[] = "app_id"; | 26 static const char kAppID[] = "app_id"; |
| 27 | 27 |
| 28 // Key used in dictionaries for the url. | 28 // Key used in dictionaries for the url. |
| 29 static const char kURL[] = "url"; | 29 static const char kURL[] = "url"; |
| 30 | 30 |
| 31 // Returns true if |browser| has any pinned tabs. | 31 // Returns true if |browser| has any pinned tabs. |
| 32 static bool HasPinnedTabs(Browser* browser) { | 32 static bool HasPinnedTabs(Browser* browser) { |
| 33 TabStripModel* tab_model = browser->tabstrip_model(); | 33 TabStripModel* tab_model = browser->tabstrip_model(); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 for (size_t i = 0, max = tabs_list->GetSize(); i < max; ++i) { | 155 for (size_t i = 0, max = tabs_list->GetSize(); i < max; ++i) { |
| 156 base::DictionaryValue* tab_values = NULL; | 156 base::DictionaryValue* tab_values = NULL; |
| 157 if (tabs_list->GetDictionary(i, &tab_values)) { | 157 if (tabs_list->GetDictionary(i, &tab_values)) { |
| 158 Tab tab; | 158 Tab tab; |
| 159 if (DecodeTab(*tab_values, &tab)) | 159 if (DecodeTab(*tab_values, &tab)) |
| 160 results.push_back(tab); | 160 results.push_back(tab); |
| 161 } | 161 } |
| 162 } | 162 } |
| 163 return results; | 163 return results; |
| 164 } | 164 } |
| OLD | NEW |