• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2014 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/ozone/common/chromeos/touchscreen_device_manager_ozone.h"
6 
7 #include "base/logging.h"
8 
9 namespace ui {
10 
TouchscreenDeviceManagerOzone()11 TouchscreenDeviceManagerOzone::TouchscreenDeviceManagerOzone() {}
12 
~TouchscreenDeviceManagerOzone()13 TouchscreenDeviceManagerOzone::~TouchscreenDeviceManagerOzone() {}
14 
GetDevices()15 std::vector<TouchscreenDevice> TouchscreenDeviceManagerOzone::GetDevices() {
16   NOTIMPLEMENTED();
17   return std::vector<TouchscreenDevice>();
18 }
19 
20 }  // namespace ui
21