Fix clang build for r86677.

BUG=none
TBR=sky

Review URL: http://codereview.chromium.org/7008015

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86688 0039d316-1c4b-4281-b951-d872f2087c98
parent ee2a19b1
......@@ -34,3 +34,7 @@ bool TestViewsDelegate::GetSavedMaximizedState(views::Window* window,
bool* maximized) const {
return false;
}
int TestViewsDelegate::GetDispositionForEvent(int event_flags) OVERRIDE {
return 0;
}
......@@ -51,9 +51,7 @@ class TestViewsDelegate : public views::ViewsDelegate {
virtual void AddRef() OVERRIDE {}
virtual void ReleaseRef() OVERRIDE {}
virtual int GetDispositionForEvent(int event_flags) OVERRIDE {
return 0;
}
virtual int GetDispositionForEvent(int event_flags) OVERRIDE;
private:
mutable scoped_ptr<ui::Clipboard> clipboard_;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment