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

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

Issue 494633003: UMA: How often are different network error screens encountered during OOBE (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update after review Created 6 years, 2 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 <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 namespace base { 42 namespace base {
43 class DictionaryValue; 43 class DictionaryValue;
44 class ListValue; 44 class ListValue;
45 } 45 }
46 46
47 namespace chromeos { 47 namespace chromeos {
48 48
49 class AuthenticatedUserEmailRetriever; 49 class AuthenticatedUserEmailRetriever;
50 class CaptivePortalWindowProxy; 50 class CaptivePortalWindowProxy;
51 class CoreOobeActor; 51 class CoreOobeActor;
52 class ErrorScreensHistogramHelper;
52 class GaiaScreenHandler; 53 class GaiaScreenHandler;
53 class NativeWindowDelegate; 54 class NativeWindowDelegate;
54 class SupervisedUserCreationScreenHandler; 55 class SupervisedUserCreationScreenHandler;
55 class User; 56 class User;
56 class UserContext; 57 class UserContext;
57 58
58 // Helper class to pass initial parameters to the login screen. 59 // Helper class to pass initial parameters to the login screen.
59 class LoginScreenContext { 60 class LoginScreenContext {
60 public: 61 public:
61 LoginScreenContext(); 62 LoginScreenContext();
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 531
531 // Input Method Engine state used at signin screen. 532 // Input Method Engine state used at signin screen.
532 scoped_refptr<input_method::InputMethodManager::State> ime_state_; 533 scoped_refptr<input_method::InputMethodManager::State> ime_state_;
533 534
534 // This callback captures "focusPod finished" event for tests. 535 // This callback captures "focusPod finished" event for tests.
535 base::Closure test_focus_pod_callback_; 536 base::Closure test_focus_pod_callback_;
536 537
537 // True if SigninScreenHandler has already been added to OobeUI observers. 538 // True if SigninScreenHandler has already been added to OobeUI observers.
538 bool oobe_ui_observer_added_; 539 bool oobe_ui_observer_added_;
539 540
541 scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_;
542
540 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; 543 base::WeakPtrFactory<SigninScreenHandler> weak_factory_;
541 544
542 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); 545 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler);
543 }; 546 };
544 547
545 } // namespace chromeos 548 } // namespace chromeos
546 549
547 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ 550 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698