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

Unified Diff: chrome/browser/ui/webui/options2/chromeos/pointer_handler.cc

Issue 10837331: Options: s/options2/options/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wut Created 8 years, 4 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
Index: chrome/browser/ui/webui/options2/chromeos/pointer_handler.cc
diff --git a/chrome/browser/ui/webui/options2/chromeos/pointer_handler.cc b/chrome/browser/ui/webui/options2/chromeos/pointer_handler.cc
deleted file mode 100644
index 8a9c2b66d4099902dcfb26e50da8eb591db7ed94..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/webui/options2/chromeos/pointer_handler.cc
+++ /dev/null
@@ -1,82 +0,0 @@
-// Copyright (c) 2012 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/ui/webui/options2/chromeos/pointer_handler.h"
-
-#include "base/basictypes.h"
-#include "base/utf_string_conversions.h"
-#include "base/values.h"
-#include "chrome/common/url_constants.h"
-#include "content/public/browser/web_ui.h"
-#include "grit/generated_resources.h"
-#include "ui/base/l10n/l10n_util.h"
-
-namespace chromeos {
-namespace options {
-
-PointerHandler::PointerHandler()
- : has_touchpad_(false),
- has_mouse_(false) {
-}
-
-PointerHandler::~PointerHandler() {
-}
-
-void PointerHandler::GetLocalizedValues(DictionaryValue* localized_strings) {
- DCHECK(localized_strings);
-
- static OptionsStringResource resources[] = {
- { "pointerOverlayTitleTouchpadOnly",
- IDS_OPTIONS_POINTER_TOUCHPAD_OVERLAY_TITLE },
- { "pointerOverlayTitleMouseOnly",
- IDS_OPTIONS_POINTER_MOUSE_OVERLAY_TITLE },
- { "pointerOverlayTitleTouchpadMouse",
- IDS_OPTIONS_POINTER_TOUCHPAD_MOUSE_OVERLAY_TITLE },
- { "pointerOverlaySectionTitleTouchpad",
- IDS_OPTIONS_POINTER_OVERLAY_SECTION_TITLE_TOUCHPAD },
- { "pointerOverlaySectionTitleMouse",
- IDS_OPTIONS_POINTER_OVERLAY_SECTION_TITLE_MOUSE },
- { "enableTapToClick",
- IDS_OPTIONS_SETTINGS_TAP_TO_CLICK_ENABLED_DESCRIPTION },
- { "primaryMouseRight",
- IDS_OPTIONS_SETTINGS_PRIMARY_MOUSE_RIGHT_DESCRIPTION },
- };
-
- localized_strings->SetString("naturalScroll",
- l10n_util::GetStringFUTF16(
- IDS_OPTIONS_SETTINGS_NATURAL_SCROLL_DESCRIPTION,
- ASCIIToUTF16(chrome::kNaturalScrollHelpURL)));
-
- RegisterStrings(localized_strings, resources, arraysize(resources));
-}
-
-
-void PointerHandler::TouchpadExists(bool exists) {
- has_touchpad_ = exists;
- base::FundamentalValue val(exists);
- web_ui()->CallJavascriptFunction("PointerOverlay.showTouchpadControls", val);
- UpdateTitle();
-}
-
-void PointerHandler::MouseExists(bool exists) {
- has_mouse_ = exists;
- base::FundamentalValue val(exists);
- web_ui()->CallJavascriptFunction("PointerOverlay.showMouseControls", val);
- UpdateTitle();
-}
-
-void PointerHandler::UpdateTitle() {
- std::string label;
- if (has_touchpad_) {
- label = has_mouse_ ? "pointerOverlayTitleTouchpadMouse" :
- "pointerOverlayTitleTouchpadOnly";
- } else {
- label = has_mouse_ ? "pointerOverlayTitleMouseOnly" : "";
- }
- base::StringValue val(label);
- web_ui()->CallJavascriptFunction("PointerOverlay.setTitle", val);
-}
-
-} // namespace options
-} // namespace chromeos
« no previous file with comments | « chrome/browser/ui/webui/options2/chromeos/pointer_handler.h ('k') | chrome/browser/ui/webui/options2/chromeos/proxy_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698