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

Side by Side Diff: chrome/browser/chromeos/cros/keyboard_library.h

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 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 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 #ifndef CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_
6 #define CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_ 6 #define CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_
7 #pragma once 7 #pragma once
8 8
9 #include "cros/chromeos_keyboard.h" 9 #include "cros/chromeos_keyboard.h"
10 10
(...skipping 20 matching lines...) Expand all
31 virtual bool RemapModifierKeys(const ModifierMap& modifier_map) = 0; 31 virtual bool RemapModifierKeys(const ModifierMap& modifier_map) = 0;
32 32
33 // Gets whehter we have separate keyboard layout per window, or not. The 33 // Gets whehter we have separate keyboard layout per window, or not. The
34 // result is stored in |is_per_window|. Returns true on success. 34 // result is stored in |is_per_window|. Returns true on success.
35 virtual bool GetKeyboardLayoutPerWindow(bool* is_per_window) const = 0; 35 virtual bool GetKeyboardLayoutPerWindow(bool* is_per_window) const = 0;
36 36
37 // Sets whether we have separate keyboard layout per window, or not. If false 37 // Sets whether we have separate keyboard layout per window, or not. If false
38 // is given, the same keyboard layout will be shared for all applications. 38 // is given, the same keyboard layout will be shared for all applications.
39 // Returns true on success. 39 // Returns true on success.
40 virtual bool SetKeyboardLayoutPerWindow(bool is_per_window) = 0; 40 virtual bool SetKeyboardLayoutPerWindow(bool is_per_window) = 0;
41 };
42 41
43 class KeyboardLibraryImpl : public KeyboardLibrary { 42 // Get library implementation.
44 public: 43 static KeyboardLibrary* GetImpl(bool stub);
45 KeyboardLibraryImpl() {}
46 virtual ~KeyboardLibraryImpl() {}
47
48 // KeyboardLibrary overrides.
49 virtual std::string GetCurrentKeyboardLayoutName() const;
50 virtual bool SetCurrentKeyboardLayoutByName(const std::string& layout_name);
51 virtual bool RemapModifierKeys(const ModifierMap& modifier_map);
52 virtual bool GetKeyboardLayoutPerWindow(bool* is_per_window) const;
53 virtual bool SetKeyboardLayoutPerWindow(bool is_per_window);
54
55 private:
56 DISALLOW_COPY_AND_ASSIGN(KeyboardLibraryImpl);
57 }; 44 };
58 45
59 } // namespace chromeos 46 } // namespace chromeos
60 47
61 #endif // CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_ 48 #endif // CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros/input_method_library.cc ('k') | chrome/browser/chromeos/cros/keyboard_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698