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

Unified Diff: android_webview/native/aw_autofill_client.h

Issue 623833003: replace OVERRIDE and FINAL with override and final in android_webview/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « android_webview/native/android_protocol_handler.cc ('k') | android_webview/native/aw_contents.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/aw_autofill_client.h
diff --git a/android_webview/native/aw_autofill_client.h b/android_webview/native/aw_autofill_client.h
index ff66f2ed758d884be57cae700c1d7d5559e7e7fe..372c220d8a12391ef9da593f2f43186279714e7d 100644
--- a/android_webview/native/aw_autofill_client.h
+++ b/android_webview/native/aw_autofill_client.h
@@ -55,19 +55,19 @@ class AwAutofillClient : public autofill::AutofillClient,
bool GetSaveFormData();
// AutofillClient:
- virtual autofill::PersonalDataManager* GetPersonalDataManager() OVERRIDE;
+ virtual autofill::PersonalDataManager* GetPersonalDataManager() override;
virtual scoped_refptr<autofill::AutofillWebDataService> GetDatabase()
- OVERRIDE;
- virtual PrefService* GetPrefs() OVERRIDE;
- virtual void HideRequestAutocompleteDialog() OVERRIDE;
- virtual void ShowAutofillSettings() OVERRIDE;
+ override;
+ virtual PrefService* GetPrefs() override;
+ virtual void HideRequestAutocompleteDialog() override;
+ virtual void ShowAutofillSettings() override;
virtual void ConfirmSaveCreditCard(
const autofill::AutofillMetrics& metric_logger,
- const base::Closure& save_card_callback) OVERRIDE;
+ const base::Closure& save_card_callback) override;
virtual void ShowRequestAutocompleteDialog(
const autofill::FormData& form,
const GURL& source_url,
- const ResultCallback& callback) OVERRIDE;
+ const ResultCallback& callback) override;
virtual void ShowAutofillPopup(
const gfx::RectF& element_bounds,
base::i18n::TextDirection text_direction,
@@ -75,17 +75,17 @@ class AwAutofillClient : public autofill::AutofillClient,
const std::vector<base::string16>& labels,
const std::vector<base::string16>& icons,
const std::vector<int>& identifiers,
- base::WeakPtr<autofill::AutofillPopupDelegate> delegate) OVERRIDE;
+ base::WeakPtr<autofill::AutofillPopupDelegate> delegate) override;
virtual void UpdateAutofillPopupDataListValues(
const std::vector<base::string16>& values,
- const std::vector<base::string16>& labels) OVERRIDE;
- virtual void HideAutofillPopup() OVERRIDE;
- virtual bool IsAutocompleteEnabled() OVERRIDE;
+ const std::vector<base::string16>& labels) override;
+ virtual void HideAutofillPopup() override;
+ virtual bool IsAutocompleteEnabled() override;
virtual void DetectAccountCreationForms(
- const std::vector<autofill::FormStructure*>& forms) OVERRIDE;
+ const std::vector<autofill::FormStructure*>& forms) override;
virtual void DidFillOrPreviewField(
const base::string16& autofilled_value,
- const base::string16& profile_full_name) OVERRIDE;
+ const base::string16& profile_full_name) override;
void SuggestionSelected(JNIEnv* env, jobject obj, jint position);
« no previous file with comments | « android_webview/native/android_protocol_handler.cc ('k') | android_webview/native/aw_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698