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

Unified Diff: chrome/browser/about_flags.cc

Issue 22891016: Add support for rect-based event targeting in views (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tests added Created 7 years, 2 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: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 90f3aa117ff8f1262ed5ad76ba1171038163c722..07f734ed67c1349a77dddc2b43fd87e14b50bc95 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -36,6 +36,7 @@
#include "ui/keyboard/keyboard_switches.h"
#include "ui/message_center/message_center_switches.h"
#include "ui/surface/surface_switches.h"
+#include "ui/views/views_switches.h"
#if defined(USE_ASH)
#include "ash/ash_switches.h"
@@ -1829,6 +1830,15 @@ const Experiment kExperiments[] = {
kOsDesktop,
SINGLE_VALUE_TYPE(switches::kEnableTranslateNewUX)
},
+#if defined(OS_CHROMEOS)
sky 2013/10/30 14:03:49 This should be TOOLKIT_VIEWS
tdanderson 2013/10/30 20:55:50 Done.
+ {
+ "views-use-rect-based-targeting", // FLAGS:RECORD_UMA
tdanderson 2013/10/29 23:36:57 This is the flag I am landing everything behind. I
+ IDS_FLAGS_VIEWS_USE_RECT_BASED_TARGETING_NAME,
+ IDS_FLAGS_VIEWS_USE_RECT_BASED_TARGETING_DESCRIPTION,
+ kOsCrOS,
+ SINGLE_VALUE_TYPE(views::switches::kViewsUseRectBasedTargeting)
+ },
+#endif
};
const Experiment* experiments = kExperiments;

Powered by Google App Engine
This is Rietveld 408576698