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

Unified Diff: chrome/browser/chromeos/cros/login_library.cc

Issue 8163011: PART3: Removed whitelist special ops. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased on the new PART2. (I think it should be 100% the same but I'd rather upload it) Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/mock_signed_settings_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/login_library.cc
diff --git a/chrome/browser/chromeos/cros/login_library.cc b/chrome/browser/chromeos/cros/login_library.cc
index 9140c6645ef154088f663e2d539a98bbbefbdbd7..aab4dfc5d8ec8cbfd97cdc6ffb9d4e04a4351271 100644
--- a/chrome/browser/chromeos/cros/login_library.cc
+++ b/chrome/browser/chromeos/cros/login_library.cc
@@ -165,18 +165,15 @@ class LoginLibraryImpl : public LoginLibrary {
case SetKeyFailure:
self->CompleteSetOwnerKey(false);
break;
- case WhitelistOpSuccess:
- self->CompleteWhitelistOp(true);
- break;
- case WhitelistOpFailure:
- self->CompleteWhitelistOp(false);
- break;
case PropertyOpSuccess:
self->CompletePropertyOp(true);
break;
case PropertyOpFailure:
self->CompletePropertyOp(false);
break;
+ case WhitelistOpSuccess:
+ case WhitelistOpFailure:
+ // DEPRECATED.
Denis Lagno 2011/10/14 15:22:00 nit: it is not a macro to be all-CAPS:)
default:
NOTREACHED();
break;
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/mock_signed_settings_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698