OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/webui/bookmarks_ui.h" | 5 #include "chrome/browser/webui/bookmarks_ui.h" |
6 | 6 |
7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "base/ref_counted_memory.h" | 8 #include "base/ref_counted_memory.h" |
9 #include "base/singleton.h" | 9 #include "base/singleton.h" |
10 #include "chrome/browser/browser_thread.h" | 10 #include "chrome/browser/browser_thread.h" |
11 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | |
12 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
13 #include "chrome/browser/tab_contents/tab_contents.h" | 12 #include "chrome/browser/tab_contents/tab_contents.h" |
| 13 #include "chrome/browser/webui/chrome_url_data_manager.h" |
14 #include "chrome/common/url_constants.h" | 14 #include "chrome/common/url_constants.h" |
15 #include "grit/theme_resources.h" | 15 #include "grit/theme_resources.h" |
16 #include "ui/base/resource/resource_bundle.h" | 16 #include "ui/base/resource/resource_bundle.h" |
17 | 17 |
18 //////////////////////////////////////////////////////////////////////////////// | 18 //////////////////////////////////////////////////////////////////////////////// |
19 // | 19 // |
20 // BookmarksUIHTMLSource | 20 // BookmarksUIHTMLSource |
21 // | 21 // |
22 //////////////////////////////////////////////////////////////////////////////// | 22 //////////////////////////////////////////////////////////////////////////////// |
23 | 23 |
(...skipping 27 matching lines...) Expand all Loading... |
51 | 51 |
52 // Set up the chrome://bookmarks/ source. | 52 // Set up the chrome://bookmarks/ source. |
53 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source); | 53 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source); |
54 } | 54 } |
55 | 55 |
56 // static | 56 // static |
57 RefCountedMemory* BookmarksUI::GetFaviconResourceBytes() { | 57 RefCountedMemory* BookmarksUI::GetFaviconResourceBytes() { |
58 return ResourceBundle::GetSharedInstance(). | 58 return ResourceBundle::GetSharedInstance(). |
59 LoadDataResourceBytes(IDR_BOOKMARKS_FAVICON); | 59 LoadDataResourceBytes(IDR_BOOKMARKS_FAVICON); |
60 } | 60 } |
OLD | NEW |