| 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 "ui/base/resource/resource_data_dll_win.h" | 5 #include "ui/base/resource/resource_data_dll_win.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/ref_counted_memory.h" | 10 #include "base/memory/ref_counted_memory.h" |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 } | 55 } |
| 56 | 56 |
| 57 ResourceHandle::TextEncodingType ResourceDataDLL::GetTextEncodingType() const { | 57 ResourceHandle::TextEncodingType ResourceDataDLL::GetTextEncodingType() const { |
| 58 return BINARY; | 58 return BINARY; |
| 59 } | 59 } |
| 60 | 60 |
| 61 ScaleFactor ResourceDataDLL::GetScaleFactor() const { | 61 ScaleFactor ResourceDataDLL::GetScaleFactor() const { |
| 62 return ui::SCALE_FACTOR_NONE; | 62 return ui::SCALE_FACTOR_NONE; |
| 63 } | 63 } |
| 64 | 64 |
| 65 bool ResourceDataDLL::HasOnlyMaterialDesignAssets() const { | |
| 66 return false; | |
| 67 } | |
| 68 | |
| 69 } // namespace ui | 65 } // namespace ui |
| OLD | NEW |