diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-08 21:53:13 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-08 21:53:13 +0000 |
commit | cadaec593e7979bfe86521f5300664ff396ca37f (patch) | |
tree | b2d5720e08ac2b19fe1f1c34c8df4fdfe44a329c /chrome/browser/automation | |
parent | 5bbc87042e45aee1152f79f97e55dd42dee07cb2 (diff) | |
download | chromium_src-cadaec593e7979bfe86521f5300664ff396ca37f.zip chromium_src-cadaec593e7979bfe86521f5300664ff396ca37f.tar.gz chromium_src-cadaec593e7979bfe86521f5300664ff396ca37f.tar.bz2 |
Add an API around InterstitialPage that's used by chrome.
BUG=98716
Review URL: https://chromiumcodereview.appspot.com/9348064
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121059 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation')
-rw-r--r-- | chrome/browser/automation/testing_automation_provider.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc index 4d8820d..610f9d3 100644 --- a/chrome/browser/automation/testing_automation_provider.cc +++ b/chrome/browser/automation/testing_automation_provider.cc @@ -121,10 +121,10 @@ #include "chrome/common/url_constants.h" #include "content/browser/renderer_host/render_view_host.h" #include "content/browser/renderer_host/render_widget_host_view.h" -#include "content/browser/tab_contents/interstitial_page.h" #include "content/public/browser/browser_child_process_host_iterator.h" #include "content/public/browser/child_process_data.h" #include "content/public/browser/favicon_status.h" +#include "content/public/browser/interstitial_page.h" #include "content/public/browser/interstitial_page_delegate.h" #include "content/public/browser/navigation_entry.h" #include "content/public/browser/notification_service.h" @@ -168,6 +168,7 @@ using content::BrowserThread; using content::ChildProcessHost; using content::DownloadItem; using content::DownloadManager; +using content::InterstitialPage; using content::NavigationController; using content::NavigationEntry; using content::PluginService; |