summaryrefslogtreecommitdiffstats
path: root/ui/views/view.cc
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-03 20:29:13 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-03 20:29:13 +0000
commit7b398483f56fcbe4a84dc3eee6f80d1ec96c925a (patch)
treec1fdca22837562229f445cd529d39f2362201dd4 /ui/views/view.cc
parenta2a1baf4c5f6b4246eff6b9ed9f480ec64539ee6 (diff)
downloadchromium_src-7b398483f56fcbe4a84dc3eee6f80d1ec96c925a.zip
chromium_src-7b398483f56fcbe4a84dc3eee6f80d1ec96c925a.tar.gz
chromium_src-7b398483f56fcbe4a84dc3eee6f80d1ec96c925a.tar.bz2
Switch to using FocusEvent for focus change notifications.
I also removed ViewStorage usage for now. Jay described generally the kind of cases where this might be useful but I have not encountered them yet in my current testing. I will reintroduce this code if it becomes necessary. Note that I have not yet verified that this works. That comes next. BUG=none TEST=none Review URL: http://codereview.chromium.org/6368083 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73655 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/view.cc')
-rw-r--r--ui/views/view.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/views/view.cc b/ui/views/view.cc
index cc92c35..b102eef 100644
--- a/ui/views/view.cc
+++ b/ui/views/view.cc
@@ -520,10 +520,10 @@ FocusTraversable* View::GetPaneFocusTraversable() const {
return NULL;
}
-void View::OnFocus(/* const FocusEvent& event */) {
+void View::OnFocus(const FocusEvent& event) {
}
-void View::OnBlur() {
+void View::OnBlur(const FocusEvent& event) {
}
////////////////////////////////////////////////////////////////////////////////