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

Unified Diff: chrome/browser/ui/views/find_bar_view.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/ui/views/find_bar_view.h
diff --git a/chrome/browser/ui/views/find_bar_view.h b/chrome/browser/ui/views/find_bar_view.h
index b26c753297b96b26b9b44175fbbb6e69d53044be..59d85bb886d6ac32cd7a24156f62bfcd7f4f0086 100644
--- a/chrome/browser/ui/views/find_bar_view.h
+++ b/chrome/browser/ui/views/find_bar_view.h
@@ -116,9 +116,7 @@ class FindBarView : public DropdownBarView,
// match_count label) and have focus brought to the find box.
class FocusForwarderView : public views::View {
public:
- explicit FocusForwarderView(
- views::Textfield* view_to_focus_on_mousedown)
- : view_to_focus_on_mousedown_(view_to_focus_on_mousedown) {}
+ explicit FocusForwarderView(views::Textfield* view_to_focus_on_mousedown);
private:
bool OnMousePressed(const ui::MouseEvent& event) override;

Powered by Google App Engine
This is Rietveld 408576698