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

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

Issue 7327007: Moving notification types which are chrome specific to a new header file chrome_notification_type... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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/owner_manager.cc
===================================================================
--- chrome/browser/chromeos/login/owner_manager.cc (revision 91771)
+++ chrome/browser/chromeos/login/owner_manager.cc (working copy)
@@ -42,13 +42,13 @@
BootTimesLoader::Get()->AddLoginTimeMarker("LoadOwnerKeyStart", false);
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
VLOG(1) << "Loading owner key";
- NotificationType result = NotificationType::OWNER_KEY_FETCH_ATTEMPT_SUCCEEDED;
+ NotificationType result = chrome::OWNER_KEY_FETCH_ATTEMPT_SUCCEEDED;
// If |public_key_| isn't empty, we already have the key, so don't
// try to import again.
if (public_key_.empty() &&
!utils_->ImportPublicKey(utils_->GetOwnerKeyFilePath(), &public_key_)) {
- result = NotificationType::OWNER_KEY_FETCH_ATTEMPT_FAILED;
+ result = chrome::OWNER_KEY_FETCH_ATTEMPT_FAILED;
}
// Whether we loaded the public key or not, send a notification indicating

Powered by Google App Engine
This is Rietveld 408576698