Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: chrome/browser/net/net_error_tab_helper.cc

Issue 2022283003: Record offline histograms with suffix via Histogram::FactoryGet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase again Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/browser/android/offline_pages/offline_page_utils_unittest.cc ('k') | components/offline_pages.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698