OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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/chromeos/brightness_bubble.h" |
| 6 |
| 7 #include "app/resource_bundle.h" |
| 8 #include "grit/theme_resources.h" |
| 9 |
| 10 namespace chromeos { |
| 11 |
| 12 BrightnessBubble::BrightnessBubble() |
| 13 : SettingLevelBubble( |
| 14 ResourceBundle::GetSharedInstance().GetBitmapNamed( |
| 15 IDR_BRIGHTNESS_BUBBLE_ICON), |
| 16 ResourceBundle::GetSharedInstance().GetBitmapNamed( |
| 17 IDR_BRIGHTNESS_BUBBLE_ICON), |
| 18 ResourceBundle::GetSharedInstance().GetBitmapNamed( |
| 19 IDR_BRIGHTNESS_BUBBLE_ICON)) { |
| 20 } |
| 21 |
| 22 } // namespace chromeos |
OLD | NEW |