File: localized_error.h

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (86 lines) | stat: -rw-r--r-- 3,315 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_ERROR_PAGE_COMMON_LOCALIZED_ERROR_H_
#define COMPONENTS_ERROR_PAGE_COMMON_LOCALIZED_ERROR_H_

#include <memory>
#include <string>

#include "base/values.h"
#include "url/gurl.h"

namespace error_page {

// If this property set to true, override the default error page.
static constexpr const char kOverrideErrorPage[] = "override_error_page";

// Set to true when the device may be in a portal state. Will be used to show a
// suggestion in the error page where appropriate.
static constexpr const char kIsPortalStateKey[] = "is_portal_state";

class LocalizedError {
 public:
  // Information about elements shown on the error page.
  struct PageState {
    PageState();
    ~PageState();
    PageState(const PageState& other) = delete;
    PageState(PageState&& other);
    PageState& operator=(PageState&& other);

    // Strings used within the error page HTML/JS.
    base::Value::Dict strings;

    bool is_offline_error = false;
    bool reload_button_shown = false;
    bool download_button_shown = false;
    bool auto_fetch_allowed = false;
  };

  LocalizedError() = delete;
  LocalizedError(const LocalizedError&) = delete;
  LocalizedError& operator=(const LocalizedError&) = delete;

  // Returns a |PageState| that describes the elements that should be shown on
  // on HTTP errors, like 404 or connection reset.
  // |is_kiosk_mode| whether device is currently in the Kiosk session mode.
  static PageState GetPageState(int error_code,
                                const std::string& error_domain,
                                const GURL& failed_url,
                                bool is_post,
                                bool is_secure_dns_network_error,
                                bool stale_copy_in_cache,
                                bool can_show_network_diagnostics_dialog,
                                bool is_incognito,
                                bool auto_fetch_feature_enabled,
                                bool is_kiosk_mode,
                                const std::string& locale,
                                bool is_blocked_by_extension,
                                const base::Value::Dict* error_page_params);

  // Returns a |PageState| that describes the elements that should be shown on
  // when default offline page is shown.
  static PageState GetPageStateForOverriddenErrorPage(
      base::Value::Dict string_dict,
      int error_code,
      const std::string& error_domain,
      const GURL& failed_url,
      const std::string& locale);

  // Returns a description of the encountered error.
  static std::u16string GetErrorDetails(const std::string& error_domain,
                                        int error_code,
                                        bool is_secure_dns_network_error,
                                        bool is_post);

  // Returns true if an error page exists for the specified parameters.
  static bool HasStrings(const std::string& error_domain, int error_code);

  static bool IsOfflineError(const std::string& error_domain, int error_code);
};

}  // namespace error_page

#endif  // COMPONENTS_ERROR_PAGE_COMMON_LOCALIZED_ERROR_H_