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

Side by Side Diff: ui/events/test/device_data_manager_test_api_stub.cc

Issue 1182303005: Fixed the Touchscreen.TouchEventsEnabled histogram to record the correct values on X11 and Ozone ba… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed sadrul@'s comments from patch set 12. Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ui/events/test/device_data_manager_test_api.h"
6
7 namespace ui {
8 namespace test {
9
10 DeviceDataManagerTestAPI::DeviceDataManagerTestAPI(bool delete_instance)
11 : delete_instance_(delete_instance) {
12 }
13
14 DeviceDataManagerTestAPI::~DeviceDataManagerTestAPI() {
15 }
16
17 bool DeviceDataManagerTestAPI::CreateDeviceDataManagerInstance() {
18 return false;
19 }
20
21 void DeviceDataManagerTestAPI::
22 NotifyObserversTouchscreenDeviceConfigurationChanged() {
23 NOTREACHED();
24 }
25
26 void DeviceDataManagerTestAPI::
27 NotifyObserversKeyboardDeviceConfigurationChanged() {
28 NOTREACHED();
29 }
30
31 void DeviceDataManagerTestAPI::
32 NotifyObserversMouseDeviceConfigurationChanged() {
33 NOTREACHED();
34 }
35
36 void DeviceDataManagerTestAPI::
37 NotifyObserversTouchpadDeviceConfigurationChanged() {
38 NOTREACHED();
39 }
40
41 void DeviceDataManagerTestAPI::NotifyObserversDeviceListsComplete() {
42 NOTREACHED();
43 }
44
45 void DeviceDataManagerTestAPI::OnDeviceListsComplete() {
46 NOTREACHED();
47 }
48
49 } // namespace test
50 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698