diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-02 20:23:45 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-02 20:23:45 +0000 |
commit | 844250b9cc72054ca0433b79b2cad2e01d1475d2 (patch) | |
tree | 36c1a6e2b452e5d7d236c3f0acba4e023cab9d0d | |
parent | 4b19ea5f055ab1c822f9ab6d57c8db59212db395 (diff) | |
download | chromium_src-844250b9cc72054ca0433b79b2cad2e01d1475d2.zip chromium_src-844250b9cc72054ca0433b79b2cad2e01d1475d2.tar.gz chromium_src-844250b9cc72054ca0433b79b2cad2e01d1475d2.tar.bz2 |
Fix aura
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116109 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/ui/views/tab_contents/native_tab_contents_container_aura.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/views/tab_contents/native_tab_contents_container_aura.cc b/chrome/browser/ui/views/tab_contents/native_tab_contents_container_aura.cc index ccdb0e5..e0d9efd 100644 --- a/chrome/browser/ui/views/tab_contents/native_tab_contents_container_aura.cc +++ b/chrome/browser/ui/views/tab_contents/native_tab_contents_container_aura.cc @@ -98,7 +98,7 @@ bool NativeTabContentsContainerAura::SkipDefaultKeyEventProcessing( bool NativeTabContentsContainerAura::IsFocusable() const { // We need to be focusable when our contents is not a view hierarchy, as // clicking on the contents needs to focus us. - return container_->tab_contents() != NULL; + return container_->web_contents() != NULL; } void NativeTabContentsContainerAura::OnFocus() { |