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

Unified Diff: chrome/browser/chromeos/system/device_change_handler.cc

Issue 15381003: Use helper DeviceChangeHandler to call mousecontrol/tpcontrol whenever a device is attached. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: GetDefaultProfile Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/system/device_change_handler.h ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/system/device_change_handler.cc
===================================================================
--- chrome/browser/chromeos/system/device_change_handler.cc (revision 0)
+++ chrome/browser/chromeos/system/device_change_handler.cc (revision 0)
@@ -0,0 +1,89 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/chromeos/system/device_change_handler.h"
+
+#include "base/prefs/pref_service.h"
+#include "chrome/browser/browser_process.h"
+#include "chrome/browser/chromeos/system/input_device_settings.h"
+#include "chrome/browser/profiles/profile_manager.h"
+#include "chrome/common/pref_names.h"
+
+namespace chromeos {
+namespace system {
+
+DeviceChangeHandler::DeviceChangeHandler()
+ : pointer_device_observer_(new PointerDeviceObserver) {
+ pointer_device_observer_->AddObserver(this);
+ pointer_device_observer_->Init();
+
+ // Apply settings on startup.
+ TouchpadExists(true);
+ MouseExists(true);
+}
+
+DeviceChangeHandler::~DeviceChangeHandler() {
+ pointer_device_observer_->RemoveObserver(this);
+}
+
+// When we detect a touchpad is attached, apply touchpad settings of the last
+// used profile.
+void DeviceChangeHandler::TouchpadExists(bool exists) {
+ if (!exists)
+ return;
+
+ // Using GetDefaultProfile here because GetLastUsedProfile returns the
+ // LoginManager profile in browser tests.
+ PrefService* prefs =
+ g_browser_process->profile_manager()->GetDefaultProfile()->GetPrefs();
+
+ const bool tap_dragging = prefs->GetBoolean(prefs::kTapDraggingEnabled);
+ system::touchpad_settings::SetTapDragging(tap_dragging);
+
+ const bool three_finger_click =
+ prefs->GetBoolean(prefs::kEnableTouchpadThreeFingerClick);
+ system::touchpad_settings::SetThreeFingerClick(three_finger_click);
+
+ const bool three_finger_swipe =
+ prefs->GetBoolean(prefs::kEnableTouchpadThreeFingerSwipe);
+ system::touchpad_settings::SetThreeFingerSwipe(three_finger_swipe);
+
+ const int sensitivity = prefs->GetInteger(prefs::kTouchpadSensitivity);
+ system::touchpad_settings::SetSensitivity(sensitivity);
+
+ // If we are not logged in, use owner preferences.
+ PrefService* local_prefs = g_browser_process->local_state();
+ const bool tap_to_click =
+ g_browser_process->profile_manager()->IsLoggedIn() ?
+ prefs->GetBoolean(prefs::kTapToClickEnabled) :
+ local_prefs->GetBoolean(prefs::kOwnerTapToClickEnabled);
+ system::touchpad_settings::SetTapToClick(tap_to_click);
+}
+
+// When we detect a mouse is attached, apply mouse settings of the last
+// used profile.
+void DeviceChangeHandler::MouseExists(bool exists) {
+ if (!exists)
+ return;
+
+ // Using GetDefaultProfile here because GetLastUsedProfile returns the
+ // LoginManager profile in browser tests.
+ PrefService* prefs =
+ g_browser_process->profile_manager()->GetDefaultProfile()->GetPrefs();
+
+ const int sensitivity = prefs->GetInteger(prefs::kMouseSensitivity);
+ system::mouse_settings::SetSensitivity(sensitivity);
+
+ // If we are not logged in, use owner preferences.
+ PrefService* local_prefs = g_browser_process->local_state();
+ const bool primary_button_right =
+ g_browser_process->profile_manager()->IsLoggedIn() ?
+ prefs->GetBoolean(prefs::kPrimaryMouseButtonRight) :
+ local_prefs->GetBoolean(prefs::kOwnerPrimaryMouseButtonRight);
+ system::mouse_settings::SetPrimaryButtonRight(primary_button_right);
+}
+
+} // namespace system
+} // namespace chromeos
+
« no previous file with comments | « chrome/browser/chromeos/system/device_change_handler.h ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698