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

Unified Diff: ash/shell.h

Issue 1909873002: Allow taking screen shot of a non child window which has delegate to paint. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index ec2e2c1ba99194ee013ea53b55a9d37a4b4796ad..6a5894d971c10e6c307202c0846b916f9d0c8b61 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -119,7 +119,6 @@ class MruWindowTracker;
class NewWindowDelegate;
class OverlayEventFilter;
class PartialMagnificationController;
-class PartialScreenshotController;
class PointerWatcherDelegate;
class PowerButtonController;
class PowerEventObserver;
@@ -130,6 +129,7 @@ class RootWindowController;
class ScopedTargetRootWindow;
class ScreenAsh;
class ScreenOrientationController;
+class ScreenshotController;
class ScreenPositionController;
class SessionStateDelegate;
class Shelf;
@@ -405,8 +405,8 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
return touch_transformer_controller_.get();
}
#endif // defined(OS_CHROMEOS)
- PartialScreenshotController* partial_screenshot_controller() {
- return partial_screenshot_controller_.get();
+ ScreenshotController* screenshot_controller() {
+ return screenshot_controller_.get();
}
MouseCursorEventFilter* mouse_cursor_filter() {
return mouse_cursor_filter_.get();
@@ -718,7 +718,7 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
aura::client::ActivationClient* activation_client_;
- std::unique_ptr<PartialScreenshotController> partial_screenshot_controller_;
+ std::unique_ptr<ScreenshotController> screenshot_controller_;
std::unique_ptr<MouseCursorEventFilter> mouse_cursor_filter_;
std::unique_ptr<ScreenPositionController> screen_position_controller_;
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698