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

Unified Diff: chrome/browser/chromeos/login/user_controller.cc

Issue 7189019: Fix even more crashes. To help identify remaining crashes now and in the future, I have made the ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/user_controller.cc
===================================================================
--- chrome/browser/chromeos/login/user_controller.cc (revision 89357)
+++ chrome/browser/chromeos/login/user_controller.cc (working copy)
@@ -74,6 +74,13 @@
controller_->OnWidgetActivated(active);
}
+ virtual views::Widget* GetWidget() OVERRIDE {
+ return view_->GetWidget();
+ }
+ virtual const views::Widget* GetWidget() const OVERRIDE {
+ return view_->GetWidget();
+ }
+
private:
UserController* controller_;
@@ -261,6 +268,14 @@
}
}
+views::Widget* UserController::GetWidget() {
+ return NULL;
+}
+
+const views::Widget* UserController::GetWidget() const {
+ return NULL;
+}
+
////////////////////////////////////////////////////////////////////////////////
// UserController, NewUserView::Delegate implementation:
//

Powered by Google App Engine
This is Rietveld 408576698