diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-11 22:30:27 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-11 22:30:27 +0000 |
commit | 09d31d50614942705ef1865f50c70151bb92b0bf (patch) | |
tree | 0b0808489a520662aae732e84f76b44012c93305 /content/browser/tab_contents/tab_contents.cc | |
parent | 5418335071175bad156fcd91f29c7ebbdb4ac4ac (diff) | |
download | chromium_src-09d31d50614942705ef1865f50c70151bb92b0bf.zip chromium_src-09d31d50614942705ef1865f50c70151bb92b0bf.tar.gz chromium_src-09d31d50614942705ef1865f50c70151bb92b0bf.tar.bz2 |
Move LoadNotificationDetails to content/public/browser and put it in the content namespace.
BUG=98716
R=jam@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9662036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126086 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/tab_contents/tab_contents.cc')
-rw-r--r-- | content/browser/tab_contents/tab_contents.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc index 84d54de..ee37026 100644 --- a/content/browser/tab_contents/tab_contents.cc +++ b/content/browser/tab_contents/tab_contents.cc @@ -25,7 +25,6 @@ #include "content/browser/host_zoom_map_impl.h" #include "content/browser/intents/web_intents_dispatcher_impl.h" #include "content/browser/load_from_memory_cache_details.h" -#include "content/browser/load_notification_details.h" #include "content/browser/renderer_host/render_process_host_impl.h" #include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/resource_dispatcher_host.h" @@ -45,6 +44,7 @@ #include "content/public/browser/download_manager.h" #include "content/public/browser/invalidate_type.h" #include "content/public/browser/javascript_dialogs.h" +#include "content/public/browser/load_notification_details.h" #include "content/public/browser/navigation_details.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/user_metrics.h" @@ -119,13 +119,14 @@ using content::DownloadManager; using content::GlobalRequestID; using content::HostZoomMap; using content::InterstitialPage; +using content::LoadNotificationDetails; using content::NavigationController; using content::NavigationEntry; using content::NavigationEntryImpl; using content::OpenURLParams; using content::RenderViewHost; -using content::RenderViewHostImpl; using content::RenderViewHostDelegate; +using content::RenderViewHostImpl; using content::RenderWidgetHost; using content::RenderWidgetHostView; using content::RenderWidgetHostViewPort; |