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/ui/webui/history_ui.h" | 5 #include "chrome/browser/ui/webui/history_ui.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "chrome/browser/sync/glue/device_info.h" | 33 #include "chrome/browser/sync/glue/device_info.h" |
34 #include "chrome/browser/sync/profile_sync_service.h" | 34 #include "chrome/browser/sync/profile_sync_service.h" |
35 #include "chrome/browser/sync/profile_sync_service_factory.h" | 35 #include "chrome/browser/sync/profile_sync_service_factory.h" |
36 #include "chrome/browser/ui/browser_finder.h" | 36 #include "chrome/browser/ui/browser_finder.h" |
37 #include "chrome/browser/ui/chrome_pages.h" | 37 #include "chrome/browser/ui/chrome_pages.h" |
38 #include "chrome/browser/ui/webui/favicon_source.h" | 38 #include "chrome/browser/ui/webui/favicon_source.h" |
39 #include "chrome/browser/ui/webui/metrics_handler.h" | 39 #include "chrome/browser/ui/webui/metrics_handler.h" |
40 #include "chrome/common/chrome_switches.h" | 40 #include "chrome/common/chrome_switches.h" |
41 #include "chrome/common/pref_names.h" | 41 #include "chrome/common/pref_names.h" |
42 #include "chrome/common/url_constants.h" | 42 #include "chrome/common/url_constants.h" |
43 #include "components/bookmarks/core/browser/bookmark_model.h" | 43 #include "components/bookmarks/browser/bookmark_model.h" |
44 #include "components/bookmarks/core/browser/bookmark_utils.h" | 44 #include "components/bookmarks/browser/bookmark_utils.h" |
45 #include "content/public/browser/notification_details.h" | 45 #include "content/public/browser/notification_details.h" |
46 #include "content/public/browser/notification_source.h" | 46 #include "content/public/browser/notification_source.h" |
47 #include "content/public/browser/url_data_source.h" | 47 #include "content/public/browser/url_data_source.h" |
48 #include "content/public/browser/web_ui.h" | 48 #include "content/public/browser/web_ui.h" |
49 #include "content/public/browser/web_ui_data_source.h" | 49 #include "content/public/browser/web_ui_data_source.h" |
50 #include "grit/browser_resources.h" | 50 #include "grit/browser_resources.h" |
51 #include "grit/generated_resources.h" | 51 #include "grit/generated_resources.h" |
52 #include "grit/theme_resources.h" | 52 #include "grit/theme_resources.h" |
53 #include "net/base/escape.h" | 53 #include "net/base/escape.h" |
54 #include "net/base/net_util.h" | 54 #include "net/base/net_util.h" |
(...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1004 Profile* profile = Profile::FromWebUI(web_ui); | 1004 Profile* profile = Profile::FromWebUI(web_ui); |
1005 content::WebUIDataSource::Add(profile, CreateHistoryUIHTMLSource(profile)); | 1005 content::WebUIDataSource::Add(profile, CreateHistoryUIHTMLSource(profile)); |
1006 } | 1006 } |
1007 | 1007 |
1008 // static | 1008 // static |
1009 base::RefCountedMemory* HistoryUI::GetFaviconResourceBytes( | 1009 base::RefCountedMemory* HistoryUI::GetFaviconResourceBytes( |
1010 ui::ScaleFactor scale_factor) { | 1010 ui::ScaleFactor scale_factor) { |
1011 return ResourceBundle::GetSharedInstance(). | 1011 return ResourceBundle::GetSharedInstance(). |
1012 LoadDataResourceBytesForScale(IDR_HISTORY_FAVICON, scale_factor); | 1012 LoadDataResourceBytesForScale(IDR_HISTORY_FAVICON, scale_factor); |
1013 } | 1013 } |
OLD | NEW |