OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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/dom_ui/most_visited_handler.h" | 5 #include "chrome/browser/dom_ui/most_visited_handler.h" |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "base/md5.h" | 8 #include "base/md5.h" |
| 9 #include "base/singleton.h" |
9 #include "base/string_util.h" | 10 #include "base/string_util.h" |
10 #include "base/thread.h" | 11 #include "base/thread.h" |
11 #include "base/values.h" | 12 #include "base/values.h" |
12 #include "chrome/browser/chrome_thread.h" | 13 #include "chrome/browser/chrome_thread.h" |
13 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 14 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
14 #include "chrome/browser/dom_ui/dom_ui_favicon_source.h" | 15 #include "chrome/browser/dom_ui/dom_ui_favicon_source.h" |
15 #include "chrome/browser/dom_ui/dom_ui_thumbnail_source.h" | 16 #include "chrome/browser/dom_ui/dom_ui_thumbnail_source.h" |
16 #include "chrome/browser/dom_ui/new_tab_ui.h" | 17 #include "chrome/browser/dom_ui/new_tab_ui.h" |
17 #include "chrome/browser/history/page_usage_data.h" | 18 #include "chrome/browser/history/page_usage_data.h" |
18 #include "chrome/browser/history/history.h" | 19 #include "chrome/browser/history/history.h" |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 DOMMessageHandler* MostVisitedHandler::Attach(DOMUI* dom_ui) { | 54 DOMMessageHandler* MostVisitedHandler::Attach(DOMUI* dom_ui) { |
54 url_blacklist_ = dom_ui->GetProfile()->GetPrefs()-> | 55 url_blacklist_ = dom_ui->GetProfile()->GetPrefs()-> |
55 GetMutableDictionary(prefs::kNTPMostVisitedURLsBlacklist); | 56 GetMutableDictionary(prefs::kNTPMostVisitedURLsBlacklist); |
56 pinned_urls_ = dom_ui->GetProfile()->GetPrefs()-> | 57 pinned_urls_ = dom_ui->GetProfile()->GetPrefs()-> |
57 GetMutableDictionary(prefs::kNTPMostVisitedPinnedURLs); | 58 GetMutableDictionary(prefs::kNTPMostVisitedPinnedURLs); |
58 // Set up our sources for thumbnail and favicon data. | 59 // Set up our sources for thumbnail and favicon data. |
59 DOMUIThumbnailSource* thumbnail_src = | 60 DOMUIThumbnailSource* thumbnail_src = |
60 new DOMUIThumbnailSource(dom_ui->GetProfile()); | 61 new DOMUIThumbnailSource(dom_ui->GetProfile()); |
61 bool posted = ChromeThread::PostTask( | 62 bool posted = ChromeThread::PostTask( |
62 ChromeThread::IO, FROM_HERE, | 63 ChromeThread::IO, FROM_HERE, |
63 NewRunnableMethod(&chrome_url_data_manager, | 64 NewRunnableMethod(Singleton<ChromeURLDataManager>().get(), |
64 &ChromeURLDataManager::AddDataSource, thumbnail_src)); | 65 &ChromeURLDataManager::AddDataSource, thumbnail_src)); |
65 if (!posted) { | 66 if (!posted) { |
66 thumbnail_src->AddRef(); | 67 thumbnail_src->AddRef(); |
67 thumbnail_src->Release(); // Keep Valgrind happy in unit tests. | 68 thumbnail_src->Release(); // Keep Valgrind happy in unit tests. |
68 } | 69 } |
69 | 70 |
70 DOMUIFavIconSource* favicon_src = new DOMUIFavIconSource(dom_ui->GetProfile())
; | 71 DOMUIFavIconSource* favicon_src = new DOMUIFavIconSource(dom_ui->GetProfile())
; |
71 posted = ChromeThread::PostTask( | 72 posted = ChromeThread::PostTask( |
72 ChromeThread::IO, FROM_HERE, | 73 ChromeThread::IO, FROM_HERE, |
73 NewRunnableMethod(&chrome_url_data_manager, | 74 NewRunnableMethod(Singleton<ChromeURLDataManager>().get(), |
74 &ChromeURLDataManager::AddDataSource, favicon_src)); | 75 &ChromeURLDataManager::AddDataSource, favicon_src)); |
75 if (!posted) { | 76 if (!posted) { |
76 favicon_src->AddRef(); | 77 favicon_src->AddRef(); |
77 favicon_src->Release(); // Keep Valgrind happy in unit tests. | 78 favicon_src->Release(); // Keep Valgrind happy in unit tests. |
78 } | 79 } |
79 | 80 |
80 // Get notifications when history is cleared. | 81 // Get notifications when history is cleared. |
81 registrar_.Add(this, NotificationType::HISTORY_URLS_DELETED, | 82 registrar_.Add(this, NotificationType::HISTORY_URLS_DELETED, |
82 Source<Profile>(dom_ui->GetProfile())); | 83 Source<Profile>(dom_ui->GetProfile())); |
83 | 84 |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 std::wstring MostVisitedHandler::GetDictionaryKeyForURL( | 448 std::wstring MostVisitedHandler::GetDictionaryKeyForURL( |
448 const std::string& url) { | 449 const std::string& url) { |
449 return ASCIIToWide(MD5String(url)); | 450 return ASCIIToWide(MD5String(url)); |
450 } | 451 } |
451 | 452 |
452 // static | 453 // static |
453 void MostVisitedHandler::RegisterUserPrefs(PrefService* prefs) { | 454 void MostVisitedHandler::RegisterUserPrefs(PrefService* prefs) { |
454 prefs->RegisterDictionaryPref(prefs::kNTPMostVisitedURLsBlacklist); | 455 prefs->RegisterDictionaryPref(prefs::kNTPMostVisitedURLsBlacklist); |
455 prefs->RegisterDictionaryPref(prefs::kNTPMostVisitedPinnedURLs); | 456 prefs->RegisterDictionaryPref(prefs::kNTPMostVisitedPinnedURLs); |
456 } | 457 } |
OLD | NEW |