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

Unified Diff: ui/aura/desktop.cc

Issue 8585015: Implement ui_controls for aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 1 month 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: ui/aura/desktop.cc
diff --git a/ui/aura/desktop.cc b/ui/aura/desktop.cc
index 2518039b96ef270774abec593b8b235101714b95..6b1ecc4e9ba8066124447fcfae30d16a8a843eac 100644
--- a/ui/aura/desktop.cc
+++ b/ui/aura/desktop.cc
@@ -428,6 +428,10 @@ void Desktop::PostNativeEvent(const base::NativeEvent& native_event) {
host_->PostNativeEvent(native_event);
}
+void Desktop::ConvertPointToNativeScreen(gfx::Point* point) const {
+ host_->ConvertPointToNativeScreen(point);
+}
+
void Desktop::SetCapture(Window* window) {
if (capture_window_ == window)
return;

Powered by Google App Engine
This is Rietveld 408576698