diff options
author | flackr@chromium.org <flackr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-06 18:15:51 +0000 |
---|---|---|
committer | flackr@chromium.org <flackr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-06 18:15:51 +0000 |
commit | b19e0e2ebf9918ced27ffb9b5eecdff6b33a52d9 (patch) | |
tree | b9245b0bc73a2272696f39786286ae30d0b8e345 /ui/ui.gyp | |
parent | 3dbbf7d631ca40cd051bf32d8d9a1c244945f07d (diff) | |
download | chromium_src-b19e0e2ebf9918ced27ffb9b5eecdff6b33a52d9.zip chromium_src-b19e0e2ebf9918ced27ffb9b5eecdff6b33a52d9.tar.gz chromium_src-b19e0e2ebf9918ced27ffb9b5eecdff6b33a52d9.tar.bz2 |
Add UMA metrics for whether touch events are enabled on new tabs.
BUG=168347
TEST=Check that Tab.TouchEventsEnabled in chrome://histograms is updating correctly based on the --touch-events flag after navigating in a few tabs.
Review URL: https://chromiumcodereview.appspot.com/12035021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181005 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/ui.gyp')
-rw-r--r-- | ui/ui.gyp | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -263,6 +263,10 @@ 'base/text/utf16_indexing.h', 'base/theme_provider.cc', 'base/theme_provider.h', + 'base/touch/touch_device.cc', + 'base/touch/touch_device.h', + 'base/touch/touch_device_android.cc', + 'base/touch/touch_device_win.cc', 'base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'base/ui_base_exports.cc', @@ -666,8 +670,12 @@ ], }], ['chromeos==1', { + 'sources': [ + 'base/touch/touch_device_aurax11.cc', + ], 'sources!': [ 'base/clipboard/clipboard_aurax11.cc', + 'base/touch/touch_device.cc', ], }], ['OS=="win"', { @@ -676,10 +684,9 @@ 'gfx/gdi_util.h', 'gfx/icon_util.cc', 'gfx/icon_util.h', - 'base/touch/touch_device_win.cc', - 'base/touch/touch_device_win.h', ], 'sources!': [ + 'base/touch/touch_device.cc', 'base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'gfx/pango_util.h', @@ -793,6 +800,7 @@ 'sources!': [ 'base/dragdrop/drag_utils.cc', 'base/dragdrop/drag_utils.h', + 'base/touch/touch_device.cc', 'base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'gfx/pango_util.cc', |