| 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
|
|
|