Index: chrome/browser/chromeos/app_mode/kiosk_app_data.h |
diff --git a/chrome/browser/chromeos/app_mode/kiosk_app_data.h b/chrome/browser/chromeos/app_mode/kiosk_app_data.h |
index 7b3a9ee7e247fc596049ffc629fba0ee409dc117..b429020e0a47104ba445820c6c48d972aedd0f54 100644 |
--- a/chrome/browser/chromeos/app_mode/kiosk_app_data.h |
+++ b/chrome/browser/chromeos/app_mode/kiosk_app_data.h |
@@ -54,7 +54,7 @@ class KioskAppData : public base::SupportsWeakPtr<KioskAppData>, |
const std::string& app_id, |
const std::string& user_id, |
const GURL& update_url); |
- virtual ~KioskAppData(); |
+ ~KioskAppData() override; |
// Loads app data from cache. If there is no cached data, fetches it |
// from web store. |
@@ -113,11 +113,10 @@ class KioskAppData : public base::SupportsWeakPtr<KioskAppData>, |
void StartFetch(); |
// extensions::WebstoreDataFetcherDelegate overrides: |
- virtual void OnWebstoreRequestFailure() override; |
- virtual void OnWebstoreResponseParseSuccess( |
+ void OnWebstoreRequestFailure() override; |
+ void OnWebstoreResponseParseSuccess( |
scoped_ptr<base::DictionaryValue> webstore_data) override; |
- virtual void OnWebstoreResponseParseFailure( |
- const std::string& error) override; |
+ void OnWebstoreResponseParseFailure(const std::string& error) override; |
// Helper function for testing for the existence of |key| in |
// |response|. Passes |key|'s content via |value| and returns |