diff options
author | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-27 20:59:27 +0000 |
---|---|---|
committer | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-27 20:59:27 +0000 |
commit | bfb411316d5d6f6a29e01a88f7a94b545b827776 (patch) | |
tree | 99c45616a22f3cb190dd7f068edfdd8941e6d524 /chrome/browser/chromeos/system/ash_system_tray_delegate.h | |
parent | bdb730765e736232e1f69a908bbeee3b54393934 (diff) | |
download | chromium_src-bfb411316d5d6f6a29e01a88f7a94b545b827776.zip chromium_src-bfb411316d5d6f6a29e01a88f7a94b545b827776.tar.gz chromium_src-bfb411316d5d6f6a29e01a88f7a94b545b827776.tar.bz2 |
ash: A first step for the uber tray.
As a first step, there are items to open settings, help pages, and an item to
allow [un]muting volume.
The resources have not been uploaded yet. That will be done in a separate CL to
allow this one to go through trybots etc.
This new uber-tray can be turned on at runtime using --ash-uber-tray flag.
BUG=110130
TEST=none yet. will be added when a little more fleshed out.
Review URL: https://chromiumcodereview.appspot.com/9463039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123799 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/system/ash_system_tray_delegate.h')
-rw-r--r-- | chrome/browser/chromeos/system/ash_system_tray_delegate.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/chrome/browser/chromeos/system/ash_system_tray_delegate.h b/chrome/browser/chromeos/system/ash_system_tray_delegate.h new file mode 100644 index 0000000..84cdb9d --- /dev/null +++ b/chrome/browser/chromeos/system/ash_system_tray_delegate.h @@ -0,0 +1,17 @@ +// Copyright (c) 2012 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. + +#ifndef CHROME_BROWSER_CHROMEOS_SYSTEM_ASH_SYSTEM_TRAY_DELEGATE_H_ +#define CHROME_BROWSER_CHROMEOS_SYSTEM_ASH_SYSTEM_TRAY_DELEGATE_H_ +#pragma once + +namespace ash { +class SystemTrayDelegate; +} + +namespace chromeos { +ash::SystemTrayDelegate* CreateSystemTrayDelegate(); +} + +#endif // CHROME_BROWSER_CHROMEOS_SYSTEM_ASH_SYSTEM_TRAY_DELEGATE_H_ |