OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/ui/history_ui.h" |
| 6 |
| 7 #include "components/grit/components_scaled_resources.h" |
| 8 #include "ui/base/resource/resource_bundle.h" |
| 9 |
| 10 namespace history_ui { |
| 11 |
| 12 base::RefCountedMemory* GetFaviconResourceBytes(ui::ScaleFactor scale_factor) { |
| 13 return ResourceBundle::GetSharedInstance().LoadDataResourceBytesForScale( |
| 14 IDR_HISTORY_FAVICON, scale_factor); |
| 15 } |
| 16 |
| 17 } // namespace history_ui |
OLD | NEW |