diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-13 19:23:36 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-13 19:23:36 +0000 |
commit | 20d2b454c328bbc8b5a30e43627ca100aa370fe0 (patch) | |
tree | 8e371a45cabce05fa604f2e520ef8b0e9f3bf9b9 /chrome/browser/tab_contents | |
parent | 043fe7e5d0bc2539348a9daec8f62ff08c67ca99 (diff) | |
download | chromium_src-20d2b454c328bbc8b5a30e43627ca100aa370fe0.zip chromium_src-20d2b454c328bbc8b5a30e43627ca100aa370fe0.tar.gz chromium_src-20d2b454c328bbc8b5a30e43627ca100aa370fe0.tar.bz2 |
add infobar_delegate.cc to the build
Review URL: http://codereview.chromium.org/20341
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9774 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents')
-rw-r--r-- | chrome/browser/tab_contents/infobar_delegate.cc | 8 | ||||
-rw-r--r-- | chrome/browser/tab_contents/navigation_controller.h | 5 |
2 files changed, 7 insertions, 6 deletions
diff --git a/chrome/browser/tab_contents/infobar_delegate.cc b/chrome/browser/tab_contents/infobar_delegate.cc index eaeb013..a39bdfa 100644 --- a/chrome/browser/tab_contents/infobar_delegate.cc +++ b/chrome/browser/tab_contents/infobar_delegate.cc @@ -5,13 +5,19 @@ #include "chrome/browser/tab_contents/infobar_delegate.h" #include "base/logging.h" +#include "build/build_config.h" #include "chrome/browser/tab_contents/navigation_entry.h" #include "chrome/browser/tab_contents/navigation_controller.h" -#include "chrome/browser/tab_contents/tab_contents.h" #include "chrome/common/l10n_util.h" #include "generated_resources.h" +#if defined(OS_WIN) +#include "chrome/browser/tab_contents/tab_contents.h" +#else +#include "chrome/common/temp_scaffolding_stubs.h" +#endif + // InfoBarDelegate: ------------------------------------------------------------ bool InfoBarDelegate::ShouldExpire( diff --git a/chrome/browser/tab_contents/navigation_controller.h b/chrome/browser/tab_contents/navigation_controller.h index d84e563..c1bf3fa 100644 --- a/chrome/browser/tab_contents/navigation_controller.h +++ b/chrome/browser/tab_contents/navigation_controller.h @@ -9,11 +9,6 @@ #include "build/build_config.h" -#if defined(OS_POSIX) -// TODO(port): remove when dependent classes are ported -#include "chrome/common/temp_scaffolding_stubs.h" -#endif - #include "base/linked_ptr.h" #include "base/ref_counted.h" #include "googleurl/src/gurl.h" |