diff options
author | derat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-06 21:42:33 +0000 |
---|---|---|
committer | derat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-06 21:42:33 +0000 |
commit | c442b3eda2f1fdd4d1d4864c34c43cbaf223acae (patch) | |
tree | 9ea3685df5dc7c89dcbdec19f6a7008bdb83e71e /chrome/browser/chromeos/brightness_bubble.cc | |
parent | b2af1e6af21dee46c586eaa8c45b14309d3e7809 (diff) | |
download | chromium_src-c442b3eda2f1fdd4d1d4864c34c43cbaf223acae.zip chromium_src-c442b3eda2f1fdd4d1d4864c34c43cbaf223acae.tar.gz chromium_src-c442b3eda2f1fdd4d1d4864c34c43cbaf223acae.tar.bz2 |
chromeos: Move audio, power, and UI files into subdirs.
This moves more files from chrome/browser/chromeos/ into
subdirectories.
BUG=chromium-os:22896
TEST=did chrome os builds both with and without aura
TBR=sky
Review URL: http://codereview.chromium.org/9125006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116746 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/brightness_bubble.cc')
-rw-r--r-- | chrome/browser/chromeos/brightness_bubble.cc | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/chrome/browser/chromeos/brightness_bubble.cc b/chrome/browser/chromeos/brightness_bubble.cc deleted file mode 100644 index 7c149aac..0000000 --- a/chrome/browser/chromeos/brightness_bubble.cc +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "chrome/browser/chromeos/brightness_bubble.h" - -#include "base/memory/singleton.h" -#include "grit/theme_resources.h" -#include "ui/base/resource/resource_bundle.h" - -namespace chromeos { - -BrightnessBubble::BrightnessBubble() - : SettingLevelBubble( - ResourceBundle::GetSharedInstance().GetBitmapNamed( - IDR_BRIGHTNESS_BUBBLE_ICON), - ResourceBundle::GetSharedInstance().GetBitmapNamed( - IDR_BRIGHTNESS_BUBBLE_ICON), - ResourceBundle::GetSharedInstance().GetBitmapNamed( - IDR_BRIGHTNESS_BUBBLE_ICON)) { -} - -// static -BrightnessBubble* BrightnessBubble::GetInstance() { - return Singleton<BrightnessBubble>::get(); -} - -} // namespace chromeos |