Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(367)

Unified Diff: chrome/browser/ui/ash/palette_delegate_chromeos.h

Issue 2199993002: Add generic PaletteDelegate code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@note-options
Patch Set: Nits Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/ash/chrome_shell_delegate.cc ('k') | chrome/browser/ui/ash/palette_delegate_chromeos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/ash/palette_delegate_chromeos.h
diff --git a/chrome/browser/ui/ash/palette_delegate_chromeos.h b/chrome/browser/ui/ash/palette_delegate_chromeos.h
new file mode 100644
index 0000000000000000000000000000000000000000..5d314f8ef174a154a7d547c46f417d6e5993ffd8
--- /dev/null
+++ b/chrome/browser/ui/ash/palette_delegate_chromeos.h
@@ -0,0 +1,29 @@
+// Copyright 2015 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_UI_ASH_PALETTE_DELEGATE_CHROMEOS_H_
+#define CHROME_BROWSER_UI_ASH_PALETTE_DELEGATE_CHROMEOS_H_
+
+#include <string>
+
+#include "ash/common/palette_delegate.h"
+#include "base/compiler_specific.h"
+#include "base/macros.h"
+#include "base/values.h"
+
+namespace chromeos {
+
+// A class which allows the Ash palette to perform chrome actions.
+class PaletteDelegateChromeOS : public ash::PaletteDelegate {
+ public:
+ PaletteDelegateChromeOS();
+ ~PaletteDelegateChromeOS() override;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(PaletteDelegateChromeOS);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_UI_ASH_PALETTE_DELEGATE_CHROMEOS_H_
« no previous file with comments | « chrome/browser/ui/ash/chrome_shell_delegate.cc ('k') | chrome/browser/ui/ash/palette_delegate_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698