diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-03 17:39:29 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-03 17:39:29 +0000 |
commit | c42799fb803edf7c35d27cdb2ed886ec18455e31 (patch) | |
tree | e2d254f81e5ffdfa65d9a975ce56ef40259fe925 /chrome | |
parent | 1635bc1557f1a8612334cc274d4db3f25dddad51 (diff) | |
download | chromium_src-c42799fb803edf7c35d27cdb2ed886ec18455e31.zip chromium_src-c42799fb803edf7c35d27cdb2ed886ec18455e31.tar.gz chromium_src-c42799fb803edf7c35d27cdb2ed886ec18455e31.tar.bz2 |
Remove unneeded temp_scaffolding_stubs.h includes. Remove ConstrainedWindow from the scaffold. Added a bunch of explicit #includes that used to be implicitly included through temp_scaffolding_stubs.h.
Review URL: http://codereview.chromium.org/60077
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13090 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/back_forward_menu_model.cc | 8 | ||||
-rw-r--r-- | chrome/browser/debugger/debugger_shell.cc | 7 | ||||
-rw-r--r-- | chrome/browser/gtk/browser_toolbar_gtk.cc | 5 | ||||
-rw-r--r-- | chrome/browser/gtk/browser_window_gtk.cc | 2 | ||||
-rw-r--r-- | chrome/browser/gtk/tabs/tab_renderer_gtk.cc | 1 | ||||
-rw-r--r-- | chrome/browser/tab_contents/tab_contents.h | 5 | ||||
-rw-r--r-- | chrome/browser/tab_contents/tab_contents_factory.cc | 2 | ||||
-rw-r--r-- | chrome/browser/tab_contents/web_contents_view_gtk.cc | 1 | ||||
-rw-r--r-- | chrome/browser/visitedlink_master.h | 5 | ||||
-rw-r--r-- | chrome/common/temp_scaffolding_stubs.h | 11 |
10 files changed, 12 insertions, 35 deletions
diff --git a/chrome/browser/back_forward_menu_model.cc b/chrome/browser/back_forward_menu_model.cc index 986ae26..daf1c8f 100644 --- a/chrome/browser/back_forward_menu_model.cc +++ b/chrome/browser/back_forward_menu_model.cc @@ -10,18 +10,12 @@ #include "chrome/browser/metrics/user_metrics.h" #include "chrome/browser/tab_contents/navigation_controller.h" #include "chrome/browser/tab_contents/navigation_entry.h" +#include "chrome/browser/tab_contents/tab_contents.h" #include "chrome/common/l10n_util.h" #include "chrome/common/url_constants.h" #include "grit/generated_resources.h" #include "net/base/registry_controlled_domain.h" -#if defined(OS_WIN) -// TODO(port): port these headers and remove the platform defines. -#include "chrome/browser/tab_contents/tab_contents.h" -#elif defined(OS_POSIX) -#include "chrome/common/temp_scaffolding_stubs.h" -#endif - const int BackForwardMenuModel::kMaxHistoryItems = 12; const int BackForwardMenuModel::kMaxChapterStops = 5; diff --git a/chrome/browser/debugger/debugger_shell.cc b/chrome/browser/debugger/debugger_shell.cc index 65695a6..fc89a94 100644 --- a/chrome/browser/debugger/debugger_shell.cc +++ b/chrome/browser/debugger/debugger_shell.cc @@ -16,17 +16,12 @@ #include "chrome/browser/debugger/debugger_io.h" #include "chrome/browser/debugger/debugger_node.h" #include "chrome/browser/renderer_host/render_process_host.h" +#include "chrome/browser/tab_contents/tab_contents.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/resource_bundle.h" #include "grit/debugger_resources.h" -#if defined(OS_WIN) -#include "chrome/browser/tab_contents/tab_contents.h" -#elif defined(OS_POSIX) -#include "chrome/common/temp_scaffolding_stubs.h" -#endif - DebuggerShell::DebuggerShell(DebuggerInputOutput* io) : io_(io), debugger_ready_(true) { } diff --git a/chrome/browser/gtk/browser_toolbar_gtk.cc b/chrome/browser/gtk/browser_toolbar_gtk.cc index 1e476b2..a3b587c 100644 --- a/chrome/browser/gtk/browser_toolbar_gtk.cc +++ b/chrome/browser/gtk/browser_toolbar_gtk.cc @@ -17,7 +17,12 @@ #include "chrome/browser/gtk/nine_box.h" #include "chrome/browser/gtk/standard_menus.h" #include "chrome/browser/net/url_fixer_upper.h" +#include "chrome/browser/profile.h" #include "chrome/common/l10n_util.h" +#include "chrome/common/notification_details.h" +#include "chrome/common/notification_type.h" +#include "chrome/common/pref_names.h" +#include "chrome/common/pref_service.h" #include "chrome/common/resource_bundle.h" #include "grit/chromium_strings.h" #include "grit/generated_resources.h" diff --git a/chrome/browser/gtk/browser_window_gtk.cc b/chrome/browser/gtk/browser_window_gtk.cc index db98770..d8d6a06 100644 --- a/chrome/browser/gtk/browser_window_gtk.cc +++ b/chrome/browser/gtk/browser_window_gtk.cc @@ -11,6 +11,7 @@ #include "base/logging.h" #include "base/message_loop.h" #include "base/path_service.h" +#include "base/string_util.h" #include "chrome/app/chrome_dll_resource.h" #include "chrome/browser/browser.h" #include "chrome/browser/browser_list.h" @@ -25,6 +26,7 @@ #include "chrome/browser/tab_contents/web_contents.h" #include "chrome/browser/tab_contents/web_contents_view.h" #include "chrome/common/chrome_switches.h" +#include "chrome/common/notification_service.h" #include "chrome/common/resource_bundle.h" #include "chrome/views/controls/button/text_button.h" #include "grit/theme_resources.h" diff --git a/chrome/browser/gtk/tabs/tab_renderer_gtk.cc b/chrome/browser/gtk/tabs/tab_renderer_gtk.cc index b6e9464..14e20ae 100644 --- a/chrome/browser/gtk/tabs/tab_renderer_gtk.cc +++ b/chrome/browser/gtk/tabs/tab_renderer_gtk.cc @@ -5,6 +5,7 @@ #include "chrome/browser/gtk/tabs/tab_renderer_gtk.h" #include "chrome/browser/browser.h" +#include "chrome/browser/profile.h" #include "chrome/browser/tab_contents/tab_contents.h" #include "chrome/common/l10n_util.h" #include "chrome/common/resource_bundle.h" diff --git a/chrome/browser/tab_contents/tab_contents.h b/chrome/browser/tab_contents/tab_contents.h index b20c3e3..5918191 100644 --- a/chrome/browser/tab_contents/tab_contents.h +++ b/chrome/browser/tab_contents/tab_contents.h @@ -13,13 +13,8 @@ #include "base/gfx/native_widget_types.h" #include "base/gfx/rect.h" #include "base/scoped_ptr.h" -#if defined(OS_WIN) -// TODO(evanm): I mean really, c'mon, this can't have broken the build, right? #include "chrome/browser/autocomplete/autocomplete_edit.h" #include "chrome/browser/tab_contents/constrained_window.h" -#else -#include "chrome/common/temp_scaffolding_stubs.h" -#endif #include "chrome/browser/tab_contents/infobar_delegate.h" #include "chrome/browser/tab_contents/navigation_controller.h" #include "chrome/browser/tab_contents/page_navigator.h" diff --git a/chrome/browser/tab_contents/tab_contents_factory.cc b/chrome/browser/tab_contents/tab_contents_factory.cc index b7ef10e..c519a3f 100644 --- a/chrome/browser/tab_contents/tab_contents_factory.cc +++ b/chrome/browser/tab_contents/tab_contents_factory.cc @@ -9,6 +9,7 @@ #include "chrome/browser/dom_ui/new_tab_ui.h" #include "chrome/browser/profile.h" #include "chrome/browser/renderer_host/render_process_host.h" +#include "chrome/browser/tab_contents/tab_contents.h" #include "chrome/browser/tab_contents/tab_contents_factory.h" #include "chrome/browser/tab_contents/web_contents.h" #include "chrome/common/url_constants.h" @@ -16,7 +17,6 @@ #if defined(OS_WIN) // TODO(port): port these headers to posix. -#include "chrome/browser/tab_contents/tab_contents.h" #elif defined(OS_POSIX) #include "chrome/common/temp_scaffolding_stubs.h" #endif diff --git a/chrome/browser/tab_contents/web_contents_view_gtk.cc b/chrome/browser/tab_contents/web_contents_view_gtk.cc index 9eaaf39..431b10a 100644 --- a/chrome/browser/tab_contents/web_contents_view_gtk.cc +++ b/chrome/browser/tab_contents/web_contents_view_gtk.cc @@ -7,6 +7,7 @@ #include <gdk/gdk.h> #include <gtk/gtk.h> +#include "base/string_util.h" #include "base/gfx/point.h" #include "base/gfx/rect.h" #include "chrome/browser/gtk/browser_window_gtk.h" diff --git a/chrome/browser/visitedlink_master.h b/chrome/browser/visitedlink_master.h index 7faae4f..d814c83 100644 --- a/chrome/browser/visitedlink_master.h +++ b/chrome/browser/visitedlink_master.h @@ -15,12 +15,7 @@ #include "base/file_path.h" #include "base/ref_counted.h" #include "base/shared_memory.h" -#if defined(OS_WIN) #include "chrome/browser/history/history.h" -#else -// TODO(port): remove scaffolding, use history.h for both POSIX and WIN. -#include "chrome/common/temp_scaffolding_stubs.h" -#endif // !defined(OS_WIN) #include "chrome/common/visitedlink_common.h" #include "testing/gtest/include/gtest/gtest_prod.h" diff --git a/chrome/common/temp_scaffolding_stubs.h b/chrome/common/temp_scaffolding_stubs.h index 510e42e..8085896 100644 --- a/chrome/common/temp_scaffolding_stubs.h +++ b/chrome/common/temp_scaffolding_stubs.h @@ -59,7 +59,6 @@ class BookmarkContextMenu; class Browser; class CommandLine; -class ConstrainedWindow; class CPCommandInterface; class DOMUIHost; class DownloadItem; @@ -534,16 +533,6 @@ class HungRendererWarning { static void ShowForWebContents(WebContents*) { NOTIMPLEMENTED(); } }; -class ConstrainedWindow { - public: - bool WasHidden() { - NOTIMPLEMENTED(); - return false; - } - void DidBecomeSelected() { NOTIMPLEMENTED(); } - void CloseConstrainedWindow() { NOTIMPLEMENTED(); } -}; - class ModalHtmlDialogDelegate : public HtmlDialogUIDelegate { public: ModalHtmlDialogDelegate(const GURL&, int, int, const std::string&, |