summaryrefslogtreecommitdiff
path: root/chromium/ash/caps_lock_delegate_stub.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ash/caps_lock_delegate_stub.cc')
-rw-r--r--chromium/ash/caps_lock_delegate_stub.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/chromium/ash/caps_lock_delegate_stub.cc b/chromium/ash/caps_lock_delegate_stub.cc
new file mode 100644
index 00000000000..8dc61cffef0
--- /dev/null
+++ b/chromium/ash/caps_lock_delegate_stub.cc
@@ -0,0 +1,26 @@
+// 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 "ash/caps_lock_delegate_stub.h"
+
+namespace ash {
+
+CapsLockDelegateStub::CapsLockDelegateStub()
+ : enabled_(false) {}
+
+CapsLockDelegateStub::~CapsLockDelegateStub() {}
+
+bool CapsLockDelegateStub::IsCapsLockEnabled() const {
+ return enabled_;
+}
+
+void CapsLockDelegateStub::SetCapsLockEnabled(bool enabled) {
+ enabled_ = enabled;
+}
+
+void CapsLockDelegateStub::ToggleCapsLock() {
+ enabled_ = !enabled_;
+}
+
+} // namespace ash