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

Side by Side Diff: ash/display/display_change_observer_chromeos.cc

Issue 945983002: Make ui::InputDeviceEventObserver provide a default implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « ash/display/display_change_observer_chromeos.h ('k') | ash/virtual_keyboard_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/display/display_change_observer_chromeos.h" 5 #include "ash/display/display_change_observer_chromeos.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 return kThresholdTable[i].device_scale_factor; 280 return kThresholdTable[i].device_scale_factor;
281 } 281 }
282 return 1.0f; 282 return 1.0f;
283 } 283 }
284 284
285 void DisplayChangeObserver::OnTouchscreenDeviceConfigurationChanged() { 285 void DisplayChangeObserver::OnTouchscreenDeviceConfigurationChanged() {
286 OnDisplayModeChanged( 286 OnDisplayModeChanged(
287 Shell::GetInstance()->display_configurator()->cached_displays()); 287 Shell::GetInstance()->display_configurator()->cached_displays());
288 } 288 }
289 289
290 void DisplayChangeObserver::OnKeyboardDeviceConfigurationChanged() {
291 }
292
293 void DisplayChangeObserver::OnMouseDeviceConfigurationChanged() {
294 }
295
296 void DisplayChangeObserver::OnTouchpadDeviceConfigurationChanged() {
297 }
298
299 } // namespace ash 290 } // namespace ash
OLDNEW
« no previous file with comments | « ash/display/display_change_observer_chromeos.h ('k') | ash/virtual_keyboard_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698