summaryrefslogtreecommitdiffstats
path: root/views/controls/image_view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'views/controls/image_view.cc')
-rw-r--r--views/controls/image_view.cc13
1 files changed, 6 insertions, 7 deletions
diff --git a/views/controls/image_view.cc b/views/controls/image_view.cc
index eb918bd..2a7e18d 100644
--- a/views/controls/image_view.cc
+++ b/views/controls/image_view.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
@@ -182,13 +182,12 @@ std::wstring ImageView::GetTooltipText() {
return tooltip_text_;
}
-bool ImageView::GetTooltipText(int x, int y, std::wstring* tooltip) {
- if (tooltip_text_.empty()) {
+bool ImageView::GetTooltipText(const gfx::Point& p, std::wstring* tooltip) {
+ if (tooltip_text_.empty())
return false;
- } else {
- *tooltip = GetTooltipText();
- return true;
- }
+
+ *tooltip = GetTooltipText();
+ return true;
}
} // namespace views