OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/net/net_error_tab_helper.h" | 5 #include "chrome/browser/net/net_error_tab_helper.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
10 #include "chrome/browser/io_thread.h" | 10 #include "chrome/browser/io_thread.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "content/public/browser/navigation_entry.h" | 21 #include "content/public/browser/navigation_entry.h" |
22 #include "content/public/browser/navigation_handle.h" | 22 #include "content/public/browser/navigation_handle.h" |
23 #include "content/public/browser/render_frame_host.h" | 23 #include "content/public/browser/render_frame_host.h" |
24 #include "ipc/ipc_message_macros.h" | 24 #include "ipc/ipc_message_macros.h" |
25 #include "net/base/net_errors.h" | 25 #include "net/base/net_errors.h" |
26 #include "url/gurl.h" | 26 #include "url/gurl.h" |
27 | 27 |
28 #if BUILDFLAG(ANDROID_JAVA_UI) | 28 #if BUILDFLAG(ANDROID_JAVA_UI) |
29 #include "chrome/browser/android/offline_pages/offline_page_model_factory.h" | 29 #include "chrome/browser/android/offline_pages/offline_page_model_factory.h" |
30 #include "chrome/browser/android/tab_android.h" | 30 #include "chrome/browser/android/tab_android.h" |
| 31 #include "components/offline_pages/client_namespace_constants.h" |
31 #include "components/offline_pages/offline_page_feature.h" | 32 #include "components/offline_pages/offline_page_feature.h" |
32 #include "components/offline_pages/offline_page_item.h" | 33 #include "components/offline_pages/offline_page_item.h" |
33 #include "components/offline_pages/offline_page_model.h" | 34 #include "components/offline_pages/offline_page_model.h" |
34 #endif // BUILDFLAG(ANDROID_JAVA_UI) | 35 #endif // BUILDFLAG(ANDROID_JAVA_UI) |
35 | 36 |
36 using content::BrowserContext; | 37 using content::BrowserContext; |
37 using content::BrowserThread; | 38 using content::BrowserThread; |
38 using content::WebContents; | 39 using content::WebContents; |
39 using content::WebContentsObserver; | 40 using content::WebContentsObserver; |
40 using error_page::DnsProbeStatus; | 41 using error_page::DnsProbeStatus; |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 | 339 |
339 bool NetErrorTabHelper::IsFromErrorPage() const { | 340 bool NetErrorTabHelper::IsFromErrorPage() const { |
340 content::NavigationEntry* entry = | 341 content::NavigationEntry* entry = |
341 web_contents()->GetController().GetLastCommittedEntry(); | 342 web_contents()->GetController().GetLastCommittedEntry(); |
342 return entry && (entry->GetPageType() == content::PAGE_TYPE_ERROR); | 343 return entry && (entry->GetPageType() == content::PAGE_TYPE_ERROR); |
343 } | 344 } |
344 | 345 |
345 #endif // BUILDFLAG(ANDROID_JAVA_UI) | 346 #endif // BUILDFLAG(ANDROID_JAVA_UI) |
346 | 347 |
347 } // namespace chrome_browser_net | 348 } // namespace chrome_browser_net |
OLD | NEW |