summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/settings/internet_page/network_proxy_section.html
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-08-30 10:22:43 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-08-30 12:36:28 +0000
commit271a6c3487a14599023a9106329505597638d793 (patch)
treee040d58ffc86c1480b79ca8528020ca9ec919bf8 /chromium/chrome/browser/resources/settings/internet_page/network_proxy_section.html
parent7b2ffa587235a47d4094787d72f38102089f402a (diff)
BASELINE: Update Chromium to 77.0.3865.59
Change-Id: I1e89a5f3b009a9519a6705102ad65c92fe736f21 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/chrome/browser/resources/settings/internet_page/network_proxy_section.html')
-rw-r--r--chromium/chrome/browser/resources/settings/internet_page/network_proxy_section.html13
1 files changed, 7 insertions, 6 deletions
diff --git a/chromium/chrome/browser/resources/settings/internet_page/network_proxy_section.html b/chromium/chrome/browser/resources/settings/internet_page/network_proxy_section.html
index 9d718a9df80..c1e7309b691 100644
--- a/chromium/chrome/browser/resources/settings/internet_page/network_proxy_section.html
+++ b/chromium/chrome/browser/resources/settings/internet_page/network_proxy_section.html
@@ -2,6 +2,7 @@
<link rel="import" href="chrome://resources/cr_components/chromeos/network/network_proxy.html">
<link rel="import" href="chrome://resources/cr_elements/chromeos/network/cr_onc_types.html">
+<link rel="import" href="chrome://resources/cr_elements/cr_button/cr_button.html">
<link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html">
<link rel="import" href="chrome://resources/cr_elements/hidden_style_css.html">
<link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network_behavior.html">
@@ -10,7 +11,6 @@
<link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
<link rel="import" href="chrome://resources/html/i18n_behavior.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-flex-layout-classes.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
<link rel="import" href="../controls/extension_controlled_indicator.html">
<link rel="import" href="../controls/settings_toggle_button.html">
<link rel="import" href="../i18n_setup.html">
@@ -20,7 +20,8 @@
<dom-module id="network-proxy-section">
<template>
- <style include="internet-shared cr-hidden-style iron-flex iron-flex-alignment">
+ <style include="internet-shared cr-hidden-style iron-flex
+ iron-flex-alignment">
cr-policy-network-indicator {
margin-inline-end: 10px;
}
@@ -89,14 +90,14 @@
$i18n{networkProxyAllowSharedWarningMessage}
</div>
<div slot="button-container">
- <paper-button class="cancel-button"
+ <cr-button class="cancel-button"
on-click="onAllowSharedDialogCancel_">
$i18n{cancel}
- </paper-button>
- <paper-button class="action-button"
+ </cr-button>
+ <cr-button class="action-button"
on-click="onAllowSharedDialogConfirm_">
$i18n{confirm}
- </paper-button>
+ </cr-button>
</div>
</cr-dialog>
</template>