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

Unified Diff: android_webview/browser/aw_web_preferences_populater.h

Issue 2884353003: [WebView] Remove more redundant classes (Closed)
Patch Set: Created 3 years, 7 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: android_webview/browser/aw_web_preferences_populater.h
diff --git a/android_webview/browser/aw_web_preferences_populater.h b/android_webview/browser/aw_web_preferences_populater.h
index 6fbd76ba9e0dc90bee97265318b1350173613de0..8d48cd4fd8a4ecf69005efc52e9e0d0b9344d605 100644
--- a/android_webview/browser/aw_web_preferences_populater.h
+++ b/android_webview/browser/aw_web_preferences_populater.h
@@ -15,10 +15,11 @@ namespace android_webview {
// Empty base class so this can be destroyed by AwContentBrowserClient.
class AwWebPreferencesPopulater {
public:
- virtual ~AwWebPreferencesPopulater();
+ AwWebPreferencesPopulater() = default;
+ ~AwWebPreferencesPopulater() = default;
- virtual void PopulateFor(content::WebContents* web_contents,
- content::WebPreferences* web_prefs) = 0;
+ void PopulateFor(content::WebContents* web_contents,
+ content::WebPreferences* web_prefs);
};
} // namespace android_webview

Powered by Google App Engine
This is Rietveld 408576698