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

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: Added logging.h include to device_data_manager_test_api_stub.cc. 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
« no previous file with comments | « ui/events/test/device_data_manager_test_api_impl.cc ('k') | ui/gfx/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "base/logging.h"
8
9 namespace ui {
10 namespace test {
11
12 DeviceDataManagerTestAPI::DeviceDataManagerTestAPI()
13 : should_delete_instance_(false) {
14 }
15
16 DeviceDataManagerTestAPI::~DeviceDataManagerTestAPI() {
17 }
18
19 bool DeviceDataManagerTestAPI::CreateDeviceDataManagerInstance() {
20 return false;
21 }
22
23 void DeviceDataManagerTestAPI::
24 NotifyObserversTouchscreenDeviceConfigurationChanged() {
25 NOTREACHED();
26 }
27
28 void DeviceDataManagerTestAPI::
29 NotifyObserversKeyboardDeviceConfigurationChanged() {
30 NOTREACHED();
31 }
32
33 void DeviceDataManagerTestAPI::
34 NotifyObserversMouseDeviceConfigurationChanged() {
35 NOTREACHED();
36 }
37
38 void DeviceDataManagerTestAPI::
39 NotifyObserversTouchpadDeviceConfigurationChanged() {
40 NOTREACHED();
41 }
42
43 void DeviceDataManagerTestAPI::NotifyObserversDeviceListsComplete() {
44 NOTREACHED();
45 }
46
47 void DeviceDataManagerTestAPI::OnDeviceListsComplete() {
48 NOTREACHED();
49 }
50
51 } // namespace test
52 } // namespace ui
OLDNEW
« no previous file with comments | « ui/events/test/device_data_manager_test_api_impl.cc ('k') | ui/gfx/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698