summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/login/indeterminate-progress.html
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/chromeos/login/indeterminate-progress.html')
-rw-r--r--chromium/chrome/browser/resources/chromeos/login/indeterminate-progress.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/chromium/chrome/browser/resources/chromeos/login/indeterminate-progress.html b/chromium/chrome/browser/resources/chromeos/login/indeterminate-progress.html
deleted file mode 100644
index b5f52b2cdb7..00000000000
--- a/chromium/chrome/browser/resources/chromeos/login/indeterminate-progress.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
-<link rel="import" href="chrome://resources/polymer/paper-progress/paper-progress.html">
-
-<!--
-Progress bar for the cases when the length of the task is unknown.
-Displays a cyclic animation without an indication of progress.
-Published properties:
- * backgroundColor
- * rate - [1 - 10]. Sets the animation's rate.
- * runnerColor
- * runnerPortion - [1 - 100]. Portion of runner's width relative to progress
- bar width (in percents).
-
-TODO(dzhioev): Polymer doesn't provide an indeterminate mode for
-<paper-progress> for now, but it will soon. So this element should be replaced
-with <paper-progress> when it'll have an indeterminate mode.
-http://crbug.com/423363
--->
-
-<polymer-element name="indeterminate-progress"
- attributes="backgroundColor rate runnerColor runnerPortion">
- <template>
- <style>
- :host {
- display: block;
- height: 4px;
- }
-
- paper-progress {
- display: block;
- width: 100%;
- height: 100%;
- }
-
- paper-progress::shadow #secondaryProgress {
- background-color: {{runnerColor}};
- }
-
- paper-progress::shadow #activeProgress,
- paper-progress::shadow #progressContainer {
- background-color: {{backgroundColor}};
- }
- </style>
-
- <paper-progress id="progress" value="{{primaryProgress}}"
- secondaryProgress="{{secondaryProgress}}"></paper-progress>
- </template>
-</polymer-element>