diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-28 03:15:00 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-28 03:15:00 +0000 |
commit | d7e0aa38936e5a012be1a012af2714f2aeeb4a15 (patch) | |
tree | faf2ed90496f647b09c3733d97ec898502adf59f /chrome | |
parent | 8ed4d91bb2cbd1cfd08f19ec6b41b29a7e1162a5 (diff) | |
download | chromium_src-d7e0aa38936e5a012be1a012af2714f2aeeb4a15.zip chromium_src-d7e0aa38936e5a012be1a012af2714f2aeeb4a15.tar.gz chromium_src-d7e0aa38936e5a012be1a012af2714f2aeeb4a15.tar.bz2 |
Hopefully fix the Linux build. dock_info_gtk now include dock_info.h so the
link stub is not necessary.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/common/temp_scaffolding_stubs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/common/temp_scaffolding_stubs.h b/chrome/common/temp_scaffolding_stubs.h index dfd84b5..c1ec4fd 100644 --- a/chrome/common/temp_scaffolding_stubs.h +++ b/chrome/common/temp_scaffolding_stubs.h @@ -339,12 +339,14 @@ class FaviconStatus { GURL url_; }; -#if !defined(TOOLKIT_VIEWS) +#if defined(OS_MACOSX) class DockInfo { public: bool GetNewWindowBounds(gfx::Rect*, bool*) const; void AdjustOtherWindowBounds() const { NOTIMPLEMENTED(); } }; +#else + #endif //--------------------------------------------------------------------------- |