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

Unified Diff: ash/shell.h

Issue 15367003: Create a mirror window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win fix Created 7 years, 7 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/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index 0415be4e43fc20a043f29f0adfb435843fe36b47..b663f78c655bbb0f8dc02a28768c85490c7a761c 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -110,6 +110,7 @@ class EventClientImpl;
class EventRewriterEventFilter;
class EventTransformationHandler;
class FocusCycler;
+class MirrorWindowController;
class MouseCursorEventFilter;
class OutputConfiguratorAnimation;
class OverlayEventFilter;
@@ -284,6 +285,9 @@ class ASH_EXPORT Shell
internal::DisplayManager* display_manager() {
return display_manager_.get();
}
+ internal::MirrorWindowController* mirror_window_controller() {
+ return mirror_window_controller_.get();
+ }
views::corewm::InputMethodEventFilter* input_method_filter() {
return input_method_filter_.get();
}
@@ -572,6 +576,7 @@ class ASH_EXPORT Shell
scoped_ptr<views::corewm::InputMethodEventFilter> input_method_filter_;
scoped_ptr<internal::DisplayManager> display_manager_;
+ scoped_ptr<internal::MirrorWindowController> mirror_window_controller_;
James Cook 2013/05/21 08:07:41 Comment what this is.
oshima 2013/05/21 14:41:50 I added the comment to the mirror window controlle
#if defined(OS_CHROMEOS) && defined(USE_X11)
// Controls video output device state.

Powered by Google App Engine
This is Rietveld 408576698