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

Unified Diff: chrome/browser/chromeos/cros/keyboard_library.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/cros/keyboard_library.h ('k') | chrome/browser/chromeos/cros/login_library.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/keyboard_library.cc
diff --git a/chrome/browser/chromeos/cros/keyboard_library.cc b/chrome/browser/chromeos/cros/keyboard_library.cc
index dce84425965f91903821b472307e54f660132fb7..552d818494fbc84fd65d41c2dae19ae7010297c1 100644
--- a/chrome/browser/chromeos/cros/keyboard_library.cc
+++ b/chrome/browser/chromeos/cros/keyboard_library.cc
@@ -9,41 +9,85 @@
namespace chromeos {
-std::string KeyboardLibraryImpl::GetCurrentKeyboardLayoutName() const {
- if (CrosLibrary::Get()->EnsureLoaded()) {
- return chromeos::GetCurrentKeyboardLayoutName();
+class KeyboardLibraryImpl : public KeyboardLibrary {
+ public:
+ KeyboardLibraryImpl() {}
+ virtual ~KeyboardLibraryImpl() {}
+
+ std::string GetCurrentKeyboardLayoutName() const {
+ if (CrosLibrary::Get()->EnsureLoaded()) {
+ return chromeos::GetCurrentKeyboardLayoutName();
+ }
+ return "";
}
- return "";
-}
-bool KeyboardLibraryImpl::SetCurrentKeyboardLayoutByName(
- const std::string& layout_name) {
- if (CrosLibrary::Get()->EnsureLoaded()) {
- return chromeos::SetCurrentKeyboardLayoutByName(layout_name);
+ bool SetCurrentKeyboardLayoutByName(const std::string& layout_name) {
+ if (CrosLibrary::Get()->EnsureLoaded()) {
+ return chromeos::SetCurrentKeyboardLayoutByName(layout_name);
+ }
+ return false;
}
- return false;
-}
-bool KeyboardLibraryImpl::RemapModifierKeys(const ModifierMap& modifier_map) {
- if (CrosLibrary::Get()->EnsureLoaded()) {
- return chromeos::RemapModifierKeys(modifier_map);
+ bool RemapModifierKeys(const ModifierMap& modifier_map) {
+ if (CrosLibrary::Get()->EnsureLoaded()) {
+ return chromeos::RemapModifierKeys(modifier_map);
+ }
+ return false;
}
- return false;
-}
-bool KeyboardLibraryImpl::GetKeyboardLayoutPerWindow(
- bool* is_per_window) const {
- if (CrosLibrary::Get()->EnsureLoaded()) {
- return chromeos::GetKeyboardLayoutPerWindow(is_per_window);
+ bool GetKeyboardLayoutPerWindow(bool* is_per_window) const {
+ if (CrosLibrary::Get()->EnsureLoaded()) {
+ return chromeos::GetKeyboardLayoutPerWindow(is_per_window);
+ }
+ return false;
}
- return false;
-}
-bool KeyboardLibraryImpl::SetKeyboardLayoutPerWindow(bool is_per_window) {
- if (CrosLibrary::Get()->EnsureLoaded()) {
- return chromeos::SetKeyboardLayoutPerWindow(is_per_window);
+ bool SetKeyboardLayoutPerWindow(bool is_per_window) {
+ if (CrosLibrary::Get()->EnsureLoaded()) {
+ return chromeos::SetKeyboardLayoutPerWindow(is_per_window);
+ }
+ return false;
}
- return false;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(KeyboardLibraryImpl);
+};
+
+class KeyboardLibraryStubImpl : public KeyboardLibrary {
+ public:
+ KeyboardLibraryStubImpl() {}
+ virtual ~KeyboardLibraryStubImpl() {}
+
+ std::string GetCurrentKeyboardLayoutName() const {
+ return "";
+ }
+
+ bool SetCurrentKeyboardLayoutByName(const std::string& layout_name) {
+ return false;
+ }
+
+ bool RemapModifierKeys(const ModifierMap& modifier_map) {
+ return false;
+ }
+
+ bool GetKeyboardLayoutPerWindow(bool* is_per_window) const {
+ return false;
+ }
+
+ bool SetKeyboardLayoutPerWindow(bool is_per_window) {
+ return false;
+ }
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(KeyboardLibraryStubImpl);
+};
+
+// static
+KeyboardLibrary* KeyboardLibrary::GetImpl(bool stub) {
+ if (stub)
+ return new KeyboardLibraryStubImpl();
+ else
+ return new KeyboardLibraryImpl();
}
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros/keyboard_library.h ('k') | chrome/browser/chromeos/cros/login_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698