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

Side by Side Diff: chrome/browser/chromeos/cros/fake/fake_keyboard_library.h

Issue 2847072: Green Tree Tactical Force: Revert skrul's bad commits (probably a git-cl bug). (Closed)
Patch Set: Created 10 years, 5 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
OLDNEW
(Empty)
1 // Copyright (c) 2010 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 CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_KEYBOARD_LIBRARY_H_
6 #define CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_KEYBOARD_LIBRARY_H_
7
8 #include <string>
9
10 #include "chrome/browser/chromeos/cros/keyboard_library.h"
11
12 namespace chromeos {
13
14 class FakeKeyboardLibrary : public KeyboardLibrary {
15 public:
16 FakeKeyboardLibrary() {}
17 virtual ~FakeKeyboardLibrary() {}
18 virtual std::string GetCurrentKeyboardLayoutName() const {
19 return "";
20 }
21 virtual bool SetCurrentKeyboardLayoutByName(const std::string& layout_name) {
22 return true;
23 }
24 virtual bool GetKeyboardLayoutPerWindow(bool* is_per_window) const {
25 return true;
26 }
27 virtual bool SetKeyboardLayoutPerWindow(bool is_per_window) {
28 return true;
29 }
30 };
31
32 } // namespace chromeos
33
34 #endif // CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_KEYBOARD_LIBRARY_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros/fake/fake_input_method_library.h ('k') | chrome/browser/chromeos/cros/fake/fake_library_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698