Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / themes / custom_theme_supplier.cc
blob657f218341f5e91c0059c69b3e99d78a1c8852cc
1 // Copyright 2013 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.
5 #include "chrome/browser/themes/custom_theme_supplier.h"
7 #include "base/memory/ref_counted_memory.h"
8 #include "ui/gfx/color_utils.h"
9 #include "ui/gfx/image/image.h"
11 CustomThemeSupplier::CustomThemeSupplier(ThemeType theme_type)
12 : theme_type_(theme_type) {}
14 CustomThemeSupplier::~CustomThemeSupplier() {}
16 void CustomThemeSupplier::StartUsingTheme() {}
18 void CustomThemeSupplier::StopUsingTheme() {}
20 bool CustomThemeSupplier::GetTint(int id, color_utils::HSL* hsl) const {
21 return false;
24 bool CustomThemeSupplier::GetColor(int id, SkColor* color) const {
25 return false;
28 bool CustomThemeSupplier::GetDisplayProperty(int id, int* result) const {
29 return false;
32 gfx::Image CustomThemeSupplier::GetImageNamed(int id) {
33 return gfx::Image();
36 base::RefCountedMemory* CustomThemeSupplier::GetRawData(
37 int idr_id,
38 ui::ScaleFactor scale_factor) const {
39 return NULL;
42 bool CustomThemeSupplier::HasCustomImage(int id) const {
43 return false;