summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortengs <tengs@chromium.org>2014-11-06 19:21:06 -0800
committerCommit bot <commit-bot@chromium.org>2014-11-07 03:22:19 +0000
commit4ace853e83db3c37924cd57f929fe7713a1ccdda (patch)
treecb8eb5dfc9ef975de05e9ae06c4aafa7fa126c20
parent6671560f497671bc28ccd50b5f1fb185a29f1248 (diff)
downloadchromium_src-4ace853e83db3c37924cd57f929fe7713a1ccdda.zip
chromium_src-4ace853e83db3c37924cd57f929fe7713a1ccdda.tar.gz
chromium_src-4ace853e83db3c37924cd57f929fe7713a1ccdda.tar.bz2
Fix compile error in M39 branch.
BUG=430774, 409427 Review URL: https://codereview.chromium.org/710433005 Cr-Commit-Position: refs/heads/master@{#303175}
-rw-r--r--chrome/browser/chromeos/login/easy_unlock/easy_unlock_reauth.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/chromeos/login/easy_unlock/easy_unlock_reauth.cc b/chrome/browser/chromeos/login/easy_unlock/easy_unlock_reauth.cc
index a19360d..f130e74 100644
--- a/chrome/browser/chromeos/login/easy_unlock/easy_unlock_reauth.cc
+++ b/chrome/browser/chromeos/login/easy_unlock/easy_unlock_reauth.cc
@@ -60,9 +60,9 @@ class ReauthHandler : public content::NotificationObserver,
}
// content::NotificationObserver
- void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override {
+ virtual void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override {
CHECK(type == chrome::NOTIFICATION_SCREEN_LOCK_STATE_CHANGED);
bool is_screen_locked = *content::Details<bool>(details).ptr();
DCHECK(is_screen_locked);