diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-20 16:56:24 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-20 16:56:24 +0000 |
commit | 70b8d6b61a6ca8127176979949ab961bb9be0990 (patch) | |
tree | e864680920f4c496423d27ef8ebc2def4f187ca7 | |
parent | 89769009cc5eaae554fd9b6c0b9a5de9983b13b3 (diff) | |
download | chromium_src-70b8d6b61a6ca8127176979949ab961bb9be0990.zip chromium_src-70b8d6b61a6ca8127176979949ab961bb9be0990.tar.gz chromium_src-70b8d6b61a6ca8127176979949ab961bb9be0990.tar.bz2 |
Fix the compile for TOOLKIT_VIEWS.
TBR=tony
Review URL: http://codereview.chromium.org/174146
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23829 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/tab_contents/tab_contents.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc index 9e00de5..18880c1 100644 --- a/chrome/browser/tab_contents/tab_contents.cc +++ b/chrome/browser/tab_contents/tab_contents.cc @@ -759,7 +759,7 @@ void TabContents::CreateShortcut() { if (!entry) return; -#if defined(OS_LINUX) +#if defined(OS_LINUX) && !defined(TOOLKIT_VIEWS) CreateApplicationShortcutsDialogGtk::Show(view()->GetTopLevelNativeWindow(), GetURL(), GetTitle()); #else |