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

Side by Side Diff: chrome/browser/custom_home_pages_table_model.cc

Issue 2743323005: MD Settings: enhance restarting Chrome + interacting w/ session restore (Closed)
Patch Set: merge Created 3 years, 9 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 unified diff | Download patch
OLDNEW
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/custom_home_pages_table_model.h" 5 #include "chrome/browser/custom_home_pages_table_model.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
11 #include "base/i18n/rtl.h" 11 #include "base/i18n/rtl.h"
12 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "chrome/browser/history/history_service_factory.h" 13 #include "chrome/browser/history/history_service_factory.h"
14 #include "chrome/browser/profiles/profile.h" 14 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/ui/browser.h" 15 #include "chrome/browser/ui/browser.h"
16 #include "chrome/browser/ui/browser_list.h" 16 #include "chrome/browser/ui/browser_list.h"
17 #include "chrome/browser/ui/settings_window_manager.h" 17 #include "chrome/browser/ui/settings_window_manager.h"
18 #include "chrome/browser/ui/tabs/tab_strip_model.h" 18 #include "chrome/browser/ui/tabs/tab_strip_model.h"
19 #include "chrome/common/url_constants.h" 19 #include "chrome/common/url_constants.h"
20 #include "chrome/grit/generated_resources.h" 20 #include "chrome/grit/generated_resources.h"
21 #include "components/history/core/browser/history_service.h" 21 #include "components/history/core/browser/history_service.h"
22 #include "components/url_formatter/url_formatter.h" 22 #include "components/url_formatter/url_formatter.h"
23 #include "content/public/browser/web_contents.h" 23 #include "content/public/browser/web_contents.h"
24 #include "content/public/common/url_constants.h"
24 #include "ui/base/l10n/l10n_util.h" 25 #include "ui/base/l10n/l10n_util.h"
25 #include "ui/base/models/table_model_observer.h" 26 #include "ui/base/models/table_model_observer.h"
26 #include "ui/gfx/codec/png_codec.h" 27 #include "ui/gfx/codec/png_codec.h"
27 #include "url/gurl.h" 28 #include "url/gurl.h"
28 29
29 namespace { 30 namespace {
30 31
31 // Checks whether the given URL should count as one of the "current" pages. 32 // Checks whether the given URL should count as one of the "current" pages.
32 // Returns true for all pages except dev tools and settings. 33 // Returns true for all pages except dev tools and settings.
33 bool ShouldAddPage(const GURL& url) { 34 bool ShouldAddPage(const GURL& url) {
34 if (url.is_empty()) 35 if (url.is_empty())
35 return false; 36 return false;
36 37
37 if (url.SchemeIs(content::kChromeDevToolsScheme)) 38 if (url.SchemeIs(content::kChromeDevToolsScheme))
38 return false; 39 return false;
39 40
40 if (url.SchemeIs(content::kChromeUIScheme)) { 41 if (url.SchemeIs(content::kChromeUIScheme)) {
41 if (url.host_piece() == chrome::kChromeUISettingsHost || 42 if (url.host_piece() == content::kChromeUISettingsHost ||
42 url.host_piece() == chrome::kChromeUISettingsFrameHost) { 43 url.host_piece() == chrome::kChromeUISettingsFrameHost) {
43 return false; 44 return false;
44 } 45 }
45 46
46 // For a settings page, the path will start with "/settings" not "settings" 47 // For a settings page, the path will start with "/settings" not "settings"
47 // so find() will return 1, not 0. 48 // so find() will return 1, not 0.
48 if (url.host_piece() == chrome::kChromeUIUberHost && 49 if (url.host_piece() == chrome::kChromeUIUberHost &&
49 url.path_piece().find(chrome::kChromeUISettingsHost) == 1) { 50 url.path_piece().find(content::kChromeUISettingsHost) == 1) {
50 return false; 51 return false;
51 } 52 }
52 } 53 }
53 54
54 return true; 55 return true;
55 } 56 }
56 57
57 } // namespace 58 } // namespace
58 59
59 struct CustomHomePagesTableModel::Entry { 60 struct CustomHomePagesTableModel::Entry {
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 if (observer_ && observable) 314 if (observer_ && observable)
314 observer_->OnItemsChanged(static_cast<int>(entry_index), 1); 315 observer_->OnItemsChanged(static_cast<int>(entry_index), 1);
315 } 316 }
316 } 317 }
317 318
318 base::string16 CustomHomePagesTableModel::FormattedURL(int row) const { 319 base::string16 CustomHomePagesTableModel::FormattedURL(int row) const {
319 base::string16 url = url_formatter::FormatUrl(entries_[row].url); 320 base::string16 url = url_formatter::FormatUrl(entries_[row].url);
320 url = base::i18n::GetDisplayStringInLTRDirectionality(url); 321 url = base::i18n::GetDisplayStringInLTRDirectionality(url);
321 return url; 322 return url;
322 } 323 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698