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

Side by Side Diff: components/error_page/renderer/net_error_helper_core.cc

Issue 2712513004: Use a qualified path for grit-generated headers in components/ (Closed)
Patch Set: more checkdeps Created 3 years, 10 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "components/error_page/renderer/net_error_helper_core.h" 5 #include "components/error_page/renderer/net_error_helper_core.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <memory> 9 #include <memory>
10 #include <set> 10 #include <set>
(...skipping 10 matching lines...) Expand all
21 #include "base/location.h" 21 #include "base/location.h"
22 #include "base/logging.h" 22 #include "base/logging.h"
23 #include "base/macros.h" 23 #include "base/macros.h"
24 #include "base/metrics/histogram_macros.h" 24 #include "base/metrics/histogram_macros.h"
25 #include "base/metrics/sparse_histogram.h" 25 #include "base/metrics/sparse_histogram.h"
26 #include "base/strings/string16.h" 26 #include "base/strings/string16.h"
27 #include "base/strings/string_util.h" 27 #include "base/strings/string_util.h"
28 #include "base/values.h" 28 #include "base/values.h"
29 #include "build/build_config.h" 29 #include "build/build_config.h"
30 #include "components/error_page/common/error_page_params.h" 30 #include "components/error_page/common/error_page_params.h"
31 #include "components/strings/grit/components_strings.h"
31 #include "components/url_formatter/url_formatter.h" 32 #include "components/url_formatter/url_formatter.h"
32 #include "content/public/common/url_constants.h" 33 #include "content/public/common/url_constants.h"
33 #include "grit/components_strings.h"
34 #include "net/base/escape.h" 34 #include "net/base/escape.h"
35 #include "net/base/net_errors.h" 35 #include "net/base/net_errors.h"
36 #include "third_party/WebKit/public/platform/WebString.h" 36 #include "third_party/WebKit/public/platform/WebString.h"
37 #include "third_party/WebKit/public/platform/WebURLError.h" 37 #include "third_party/WebKit/public/platform/WebURLError.h"
38 #include "ui/base/l10n/l10n_util.h" 38 #include "ui/base/l10n/l10n_util.h"
39 #include "url/gurl.h" 39 #include "url/gurl.h"
40 #include "url/url_constants.h" 40 #include "url/url_constants.h"
41 41
42 namespace error_page { 42 namespace error_page {
43 43
(...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
1048 committed_error_page_info_->error, 1048 committed_error_page_info_->error,
1049 *committed_error_page_info_->navigation_correction_params, 1049 *committed_error_page_info_->navigation_correction_params,
1050 *response, 1050 *response,
1051 *response->corrections[tracking_id]); 1051 *response->corrections[tracking_id]);
1052 delegate_->SendTrackingRequest( 1052 delegate_->SendTrackingRequest(
1053 committed_error_page_info_->navigation_correction_params->url, 1053 committed_error_page_info_->navigation_correction_params->url,
1054 request_body); 1054 request_body);
1055 } 1055 }
1056 1056
1057 } // namespace error_page 1057 } // namespace error_page
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698