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

Unified Diff: chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h

Issue 2700303002: cros: Unify oobe View/Actor naming to just View. (Closed)
Patch Set: Rebase Created 3 years, 10 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
Index: chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h
diff --git a/chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h b/chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h
deleted file mode 100644
index b6d86f8468ad69ff4bf74d7bccd4de8f019671df..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_ACTOR_H_
-#define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_ACTOR_H_
-
-#include "base/macros.h"
-
-namespace base {
-class DictionaryValue;
-}
-
-namespace chromeos {
-
-namespace host_pairing {
-
-// Keep these constants synced with corresponding constants defined in
-// oobe_screen_host_pairing.js.
-// Conxtext keys.
-extern const char kContextKeyPage[];
-extern const char kContextKeyDeviceName[];
-extern const char kContextKeyConfirmationCode[];
-extern const char kContextKeyEnrollmentDomain[];
-extern const char kContextKeyUpdateProgress[];
-
-// Pages names.
-extern const char kPageWelcome[];
-extern const char kPageIntializationError[];
-extern const char kPageCodeConfirmation[];
-extern const char kPageConnectionError[];
-extern const char kPageSetupBasicConfiguration[];
-extern const char kPageSetupNetworkError[];
-extern const char kPageUpdate[];
-extern const char kPageEnrollmentIntroduction[];
-extern const char kPageEnrollment[];
-extern const char kPageEnrollmentError[];
-extern const char kPagePairingDone[];
-
-} // namespace host_pairing
-
-class HostPairingScreenActor {
- public:
- class Delegate {
- public:
- virtual ~Delegate() {}
- virtual void OnActorDestroyed(HostPairingScreenActor* actor) = 0;
- };
-
- HostPairingScreenActor();
- virtual ~HostPairingScreenActor();
-
- virtual void Show() = 0;
- virtual void Hide() = 0;
- virtual void SetDelegate(Delegate* delegate) = 0;
- virtual void OnContextChanged(const base::DictionaryValue& diff) = 0;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(HostPairingScreenActor);
-};
-
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_ACTOR_H_

Powered by Google App Engine
This is Rietveld 408576698