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

Unified Diff: ui/aura/env.h

Issue 413303003: Remove const from int return type on aura::Env::mouse_button_flags() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/env.h
diff --git a/ui/aura/env.h b/ui/aura/env.h
index a4f676684821f4bbf8349076729eda7bd1db84b7..e857da6a7bd6d696b79b42e9774a227015765713 100644
--- a/ui/aura/env.h
+++ b/ui/aura/env.h
@@ -42,7 +42,7 @@ class AURA_EXPORT Env : public ui::EventTarget, public base::SupportsUserData {
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_; }
void set_mouse_button_flags(int mouse_button_flags) {
mouse_button_flags_ = mouse_button_flags;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698