summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-15 15:51:07 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-15 15:51:07 +0000
commit351c523ffc1268331b7e26fc484e51ab829907c1 (patch)
treeb3e71ca9a2de3bfe1d3698492f84ed1df4e15f3e
parent2bc8e5fb1e2bd185a9ccfb393be6241187d09225 (diff)
downloadchromium_src-351c523ffc1268331b7e26fc484e51ab829907c1.zip
chromium_src-351c523ffc1268331b7e26fc484e51ab829907c1.tar.gz
chromium_src-351c523ffc1268331b7e26fc484e51ab829907c1.tar.bz2
mac: drop NOTIMPLEMENTED in GotFocus()
See http://codereview.chromium.org/194109 for details. BUG=none TEST=none Review URL: http://codereview.chromium.org/196122 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26220 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/tab_contents/tab_contents_view_gtk.cc2
-rw-r--r--chrome/browser/tab_contents/tab_contents_view_mac.mm3
2 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/tab_contents/tab_contents_view_gtk.cc b/chrome/browser/tab_contents/tab_contents_view_gtk.cc
index 72e7c1a..091f926 100644
--- a/chrome/browser/tab_contents/tab_contents_view_gtk.cc
+++ b/chrome/browser/tab_contents/tab_contents_view_gtk.cc
@@ -549,7 +549,7 @@ void TabContentsViewGtk::UpdateDragCursor(WebDragOperation operation) {
void TabContentsViewGtk::GotFocus() {
// This is only used in the views FocusManager stuff but it bleeds through
- // all subclasses.
+ // all subclasses. http://crbug.com/21875
}
// This is called when we the renderer asks us to take focus back (i.e., it has
diff --git a/chrome/browser/tab_contents/tab_contents_view_mac.mm b/chrome/browser/tab_contents/tab_contents_view_mac.mm
index 96c1f6c..7c85dfd 100644
--- a/chrome/browser/tab_contents/tab_contents_view_mac.mm
+++ b/chrome/browser/tab_contents/tab_contents_view_mac.mm
@@ -191,7 +191,8 @@ void TabContentsViewMac::UpdateDragCursor(WebDragOperation operation) {
}
void TabContentsViewMac::GotFocus() {
- NOTIMPLEMENTED();
+ // This is only used in the views FocusManager stuff but it bleeds through
+ // all subclasses. http://crbug.com/21875
}
// This is called when we the renderer asks us to take focus back (i.e., it has