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

Unified Diff: ash/mus/frame/detached_title_area_renderer_host.h

Issue 2277563002: Wires up immersive mode for chrome and mash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback 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 | « ash/mus/frame/detached_title_area_renderer.cc ('k') | ash/mus/non_client_frame_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/frame/detached_title_area_renderer_host.h
diff --git a/ash/mus/frame/detached_title_area_renderer_host.h b/ash/mus/frame/detached_title_area_renderer_host.h
new file mode 100644
index 0000000000000000000000000000000000000000..416c028e61a9905a98e6b5a048d03547f9960e49
--- /dev/null
+++ b/ash/mus/frame/detached_title_area_renderer_host.h
@@ -0,0 +1,27 @@
+// Copyright 2016 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_MUS_FRAME_DETATCHED_TITLE_AREA_RENDERER_HOST_H_
+#define ASH_MUS_FRAME_DETATCHED_TITLE_AREA_RENDERER_HOST_H_
+
+namespace ash {
+namespace mus {
+
+class DetachedTitleAreaRenderer;
+
+// Used to inform the creator of DetachedTitleAreaRenderer of interesting
+// events.
+class DetachedTitleAreaRendererHost {
+ public:
+ virtual void OnDetachedTitleAreaRendererDestroyed(
+ DetachedTitleAreaRenderer* renderer) = 0;
+
+ protected:
+ virtual ~DetachedTitleAreaRendererHost() {}
+};
+
+} // namespace mus
+} // namespace ash
+
+#endif // ASH_MUS_FRAME_DETATCHED_TITLE_AREA_RENDERER_HOST_H_
« no previous file with comments | « ash/mus/frame/detached_title_area_renderer.cc ('k') | ash/mus/non_client_frame_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698