diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-04 17:02:46 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-04 17:02:46 +0000 |
commit | 3c4fc697e388737de181ed3b43c933b47815c317 (patch) | |
tree | 9fe58b68820ef194cda6a8279084634260dd679a /ui/views/bubble | |
parent | 98953b1f14763e23fa0b83fa53f01806b5bd5d87 (diff) | |
download | chromium_src-3c4fc697e388737de181ed3b43c933b47815c317.zip chromium_src-3c4fc697e388737de181ed3b43c933b47815c317.tar.gz chromium_src-3c4fc697e388737de181ed3b43c933b47815c317.tar.bz2 |
views: Mark single-argument constructors as explicit.
This was reported by cpplint as:
python ~/depot_tools/cpplint.py $(find ui/views/ -type f -name \*.cc) 2>&1 | grep -v "Done processing" | grep explicit
R=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10358013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135365 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/bubble')
-rw-r--r-- | ui/views/bubble/bubble_frame_view_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/views/bubble/bubble_frame_view_unittest.cc b/ui/views/bubble/bubble_frame_view_unittest.cc index 387bf52..cb99f07 100644 --- a/ui/views/bubble/bubble_frame_view_unittest.cc +++ b/ui/views/bubble/bubble_frame_view_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -40,7 +40,7 @@ gfx::Size SizedBubbleDelegateView::GetPreferredSize() { return kRect.size(); } class TestBubbleFrameView : public BubbleFrameView { public: - TestBubbleFrameView(const gfx::Rect& bounds); + explicit TestBubbleFrameView(const gfx::Rect& bounds); virtual ~TestBubbleFrameView(); protected: |