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

Side by Side Diff: ui/display/chromeos/touchscreen_delegate_impl.h

Issue 336863002: Moving input device hotplug event processing outside of ui/display (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove TouchscreenDelegate references from display_unittests Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
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 #ifndef UI_DISPLAY_CHROMEOS_TOUCHSCREEN_DELEGATE_IMPL_H_
6 #define UI_DISPLAY_CHROMEOS_TOUCHSCREEN_DELEGATE_IMPL_H_
7
8 #include "base/memory/scoped_ptr.h"
9 #include "ui/display/chromeos/display_configurator.h"
10 #include "ui/display/display_export.h"
11
12 namespace ui {
13
14 class DISPLAY_EXPORT TouchscreenDelegateImpl
15 : public DisplayConfigurator::TouchscreenDelegate {
16 public:
17 TouchscreenDelegateImpl();
18 virtual ~TouchscreenDelegateImpl();
19
20 // DisplayConfigurator::TouchscreenDelegate overrides:
21 virtual void AssociateTouchscreens(
22 std::vector<DisplayConfigurator::DisplayState>* displays) OVERRIDE;
23
24 private:
25 DISALLOW_COPY_AND_ASSIGN(TouchscreenDelegateImpl);
26 };
27
28 } // namespace ui
29
30 #endif // UI_DISPLAY_CHROMEOS_TOUCHSCREEN_DELEGATE_IMPL_H_
OLDNEW
« no previous file with comments | « ui/display/chromeos/display_configurator_unittest.cc ('k') | ui/display/chromeos/touchscreen_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698