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

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h

Issue 2925353002: Implement sync of keyboard layout between Ozone and Wayland clients (Closed)
Patch Set: Fix -Wall build failure Created 3 years, 6 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 #include <set> 10 #include <set>
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 bool ShouldLoadGaia() const; 452 bool ShouldLoadGaia() const;
453 453
454 // Shows signin. 454 // Shows signin.
455 void OnShowAddUser(); 455 void OnShowAddUser();
456 456
457 net::Error FrameError() const; 457 net::Error FrameError() const;
458 458
459 // input_method::ImeKeyboard::Observer implementation: 459 // input_method::ImeKeyboard::Observer implementation:
460 void OnCapsLockChanged(bool enabled) override; 460 void OnCapsLockChanged(bool enabled) override;
461 461
462 // input_method::ImeKeyboard::Observer implementation:
sadrul 2017/06/14 03:16:53 ditto
jclinton 2017/06/14 15:49:04 Done.
463 void OnLayoutChanging(const std::string& layout_name) override {}
464
462 // Callback invoked after the feedback is finished. 465 // Callback invoked after the feedback is finished.
463 void OnFeedbackFinished(); 466 void OnFeedbackFinished();
464 467
465 // Called when the cros property controlling allowed input methods changes. 468 // Called when the cros property controlling allowed input methods changes.
466 void OnAllowedInputMethodsChanged(); 469 void OnAllowedInputMethodsChanged();
467 470
468 // Update the keyboard settings for |account_id|. 471 // Update the keyboard settings for |account_id|.
469 void SetKeyboardSettings(const AccountId& account_id); 472 void SetKeyboardSettings(const AccountId& account_id);
470 473
471 // Current UI state of the signin screen. 474 // Current UI state of the signin screen.
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 lock_screen_apps_observer_; 561 lock_screen_apps_observer_;
559 562
560 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; 563 base::WeakPtrFactory<SigninScreenHandler> weak_factory_;
561 564
562 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); 565 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler);
563 }; 566 };
564 567
565 } // namespace chromeos 568 } // namespace chromeos
566 569
567 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ 570 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698