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

Unified Diff: chrome/browser/chrome_browser_main_extra_parts.h

Issue 1499793003: Fix classes that have too many virtuals for inline constructors. Base URL: https://chromium.googlesource.com/chromium/src.git@enable-virtuals-as-complexity
Patch Set: Finish fixing the codebase that's accessible from Linux. Created 5 years 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: chrome/browser/chrome_browser_main_extra_parts.h
diff --git a/chrome/browser/chrome_browser_main_extra_parts.h b/chrome/browser/chrome_browser_main_extra_parts.h
index 4ab0e512d888804b6e883f19f7689b7a640b509a..83a94af44fa349a9b783ba80f8e4d22bd23e8b60 100644
--- a/chrome/browser/chrome_browser_main_extra_parts.h
+++ b/chrome/browser/chrome_browser_main_extra_parts.h
@@ -40,6 +40,9 @@ class ChromeBrowserMainExtraParts {
virtual void PostBrowserStart() {}
virtual void PreMainMessageLoopRun() {}
virtual void PostMainMessageLoopRun() {}
+
+ protected:
+ ChromeBrowserMainExtraParts() = default;
};
#endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_

Powered by Google App Engine
This is Rietveld 408576698