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

Unified Diff: ash/system/cast/cast_observer.h

Issue 1115083002: Add the supporting code for the cast system tray integration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Support detecting if we are casting a tab or the desktop Created 5 years, 8 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
Index: ash/system/cast/cast_observer.h
diff --git a/ash/system/cast/cast_observer.h b/ash/system/cast/cast_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..0995e158214ce2fb55933c708f94953e0f505b0f
--- /dev/null
+++ b/ash/system/cast/cast_observer.h
@@ -0,0 +1,19 @@
+// 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 ASH_SYSTEM_CAST_CAST_OBSERVER_H_
+#define ASH_SYSTEM_CAST_CAST_OBSERVER_H_
+
+namespace ash {
+
+class CastObserver {
achuithb 2015/05/06 00:45:57 Is this used for anything?
+ public:
+ virtual ~CastObserver() {}
+
+ virtual void OnCastRefresh() = 0;
+};
+
+} // namespace ash
+
+#endif // ASH_SYSTEM_CAST_CAST_OBSERVER_H_

Powered by Google App Engine
This is Rietveld 408576698