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

Unified Diff: chrome/browser/chromeos/login/enterprise_enrollment_view.h

Issue 6821075: Chrome-side lockbox bindings (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: ...and now again only my stuff! Created 9 years, 8 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/enterprise_enrollment_view.h
diff --git a/chrome/browser/chromeos/login/enterprise_enrollment_view.h b/chrome/browser/chromeos/login/enterprise_enrollment_view.h
index 23322f121c52872a9b7cd32db0f180fa9aa17bd4..68f16122051c2d7ced2138b98c48664bb3beb0c1 100644
--- a/chrome/browser/chromeos/login/enterprise_enrollment_view.h
+++ b/chrome/browser/chromeos/login/enterprise_enrollment_view.h
@@ -10,6 +10,9 @@
#include "base/basictypes.h"
#include "base/compiler_specific.h"
+#include "base/message_loop.h"
+#include "base/task.h"
+#include "chrome/browser/browser_process.h"
#include "chrome/browser/chromeos/login/web_page_view.h"
#include "chrome/browser/ui/webui/chromeos/enterprise_enrollment_ui.h"
#include "chrome/common/net/gaia/google_service_auth_error.h"
@@ -37,6 +40,9 @@ class EnterpriseEnrollmentView : public views::View,
// Initialize view controls and layout.
void Init();
+ // Starts the Lockbox storage process.
+ void WriteLockboxData();
Mattias Nissler (ping if slow) 2011/04/14 11:43:17 this needs to go into EnterpriseEnrollmentScreen,
+
// Switches to the confirmation screen.
void ShowConfirmationScreen();
@@ -70,6 +76,11 @@ class EnterpriseEnrollmentView : public views::View,
// Controls.
WebPageDomView* enrollment_page_view_;
+ // Local variables.
+ std::string user_;
+ ScopedRunnableMethodFactory<EnterpriseEnrollmentView>
+ runnable_method_factory_;
+
DISALLOW_COPY_AND_ASSIGN(EnterpriseEnrollmentView);
};

Powered by Google App Engine
This is Rietveld 408576698