| Index: chrome/browser/chromeos/offline/offline_load_page_unittest.cc
|
| diff --git a/chrome/browser/chromeos/offline/offline_load_page_unittest.cc b/chrome/browser/chromeos/offline/offline_load_page_unittest.cc
|
| index c94534a0b1da214624c0ea38353794b28469ec90..f07205ef213454724aa14871db3fd4aa61db7f36 100644
|
| --- a/chrome/browser/chromeos/offline/offline_load_page_unittest.cc
|
| +++ b/chrome/browser/chromeos/offline/offline_load_page_unittest.cc
|
| @@ -64,7 +64,7 @@ class OfflineLoadPageTest : public ChromeRenderViewHostTestHarness {
|
| void Navigate(const char* url, int page_id) {
|
| WebContentsTester::For(web_contents())->TestDidNavigate(
|
| web_contents()->GetMainFrame(), page_id, GURL(url),
|
| - content::PAGE_TRANSITION_TYPED);
|
| + ui::PAGE_TRANSITION_TYPED);
|
| }
|
|
|
| void ShowInterstitial(const char* url) {
|
| @@ -94,7 +94,7 @@ TEST_F(OfflineLoadPageTest, OfflinePageProceed) {
|
| Navigate(kURL1, 1);
|
| // Load next page.
|
| controller().LoadURL(GURL(kURL2), content::Referrer(),
|
| - content::PAGE_TRANSITION_TYPED, std::string());
|
| + ui::PAGE_TRANSITION_TYPED, std::string());
|
|
|
| // Simulate the load causing an offline browsing interstitial page
|
| // to be shown.
|
| @@ -122,7 +122,7 @@ TEST_F(OfflineLoadPageTest, OfflinePageDontProceed) {
|
| // Start a load.
|
| Navigate(kURL1, 1);
|
| controller().LoadURL(GURL(kURL2), content::Referrer(),
|
| - content::PAGE_TRANSITION_TYPED, std::string());
|
| + ui::PAGE_TRANSITION_TYPED, std::string());
|
|
|
| // Simulate the load causing an offline interstitial page to be shown.
|
| ShowInterstitial(kURL2);
|
|
|