summaryrefslogtreecommitdiff
path: root/chromium/ui/webui/resources/cr_components/chromeos/cellular_setup/cellular_setup.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/webui/resources/cr_components/chromeos/cellular_setup/cellular_setup.js')
-rw-r--r--chromium/ui/webui/resources/cr_components/chromeos/cellular_setup/cellular_setup.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/chromium/ui/webui/resources/cr_components/chromeos/cellular_setup/cellular_setup.js b/chromium/ui/webui/resources/cr_components/chromeos/cellular_setup/cellular_setup.js
index 3968c19e336..e2c7b944dda 100644
--- a/chromium/ui/webui/resources/cr_components/chromeos/cellular_setup/cellular_setup.js
+++ b/chromium/ui/webui/resources/cr_components/chromeos/cellular_setup/cellular_setup.js
@@ -15,9 +15,24 @@ Polymer({
/** @type {!cellular_setup.CellularSetupDelegate} */
delegate: Object,
+ /**
+ * Title of the flow, shown at the top of the dialog. No title shown if the
+ * string is empty.
+ */
flowTitle: {
type: String,
notify: true,
+ value: '',
+ },
+
+ /**
+ * Header for the flow, shown below the title. No header shown if the string
+ * is empty.
+ */
+ flowHeader: {
+ type: String,
+ notify: true,
+ value: '',
},
/**