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

Unified Diff: chrome/browser/chromeos/system_logs/touch_log_source_ozone.cc

Issue 864253002: Dump property values for the touch log source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sort property values. Created 5 years, 11 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/chromeos/system_logs/touch_log_source_ozone.cc
diff --git a/chrome/browser/chromeos/system_logs/touch_log_source_ozone.cc b/chrome/browser/chromeos/system_logs/touch_log_source_ozone.cc
index 3e9f16524ca3b09afa34f637be703fbd256ced40..90084f312d1a85d77ce972191f33ba79fa5e883d 100644
--- a/chrome/browser/chromeos/system_logs/touch_log_source_ozone.cc
+++ b/chrome/browser/chromeos/system_logs/touch_log_source_ozone.cc
@@ -12,6 +12,8 @@
#include "base/process/launch.h"
#include "components/feedback/feedback_util.h"
#include "content/public/browser/browser_thread.h"
+#include "ui/ozone/public/input_controller.h"
+#include "ui/ozone/public/ozone_platform.h"
using content::BrowserThread;
@@ -30,9 +32,9 @@ void GetTouchLogsOzone(system_logs::SystemLogsResponse* response) {
(*response)[kHUDLogDataKey] = touch_log;
}
- // TODO(sheckylin): Add ozone touch log collection implementation. See
- // http://crbug.com/400022.
- NOTIMPLEMENTED();
+ (*response)["hack-33025-touchpad"] = ui::OzonePlatform::GetInstance()
achuithb 2015/01/22 20:42:12 Make this a const char[] as well, and add a commen
Shecky Lin 2015/01/23 07:46:46 Done.
+ ->GetInputController()
+ ->GetGestureDeviceStatus();
}
} // namespace
« no previous file with comments | « no previous file | ui/events/ozone/evdev/input_controller_evdev.h » ('j') | ui/events/ozone/evdev/input_controller_evdev.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698