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

Unified Diff: ui/aura/env.h

Issue 267593005: Refactor menu controller to isolate aura dependency. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup Created 6 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: ui/aura/env.h
diff --git a/ui/aura/env.h b/ui/aura/env.h
index 1d6c19de3fb07a4a15b1cab5fd84e714daa09438..2e7d227f8d4cf34a478fa9d20d3e2b4ea184d2b9 100644
--- a/ui/aura/env.h
+++ b/ui/aura/env.h
@@ -39,7 +39,7 @@ class AURA_EXPORT Env : public ui::EventTarget {
void AddObserver(EnvObserver* observer);
void RemoveObserver(EnvObserver* observer);
- const int mouse_button_flags() const { return mouse_button_flags_; }
+ int mouse_button_flags() const { return mouse_button_flags_; }
tapted 2014/05/06 00:02:46 nit: the change here shouldn't be required any mor
Andre 2014/05/07 23:12:39 Done.
void set_mouse_button_flags(int mouse_button_flags) {
mouse_button_flags_ = mouse_button_flags;
}

Powered by Google App Engine
This is Rietveld 408576698