| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_PROGRESS_BAR_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_PROGRESS_BAR_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_PROGRESS_BAR_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_PROGRESS_BAR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "gfx/font.h" | 12 #include "ui/gfx/font.h" |
| 13 #include "views/view.h" | 13 #include "views/view.h" |
| 14 | 14 |
| 15 class SkBitmap; | 15 class SkBitmap; |
| 16 | 16 |
| 17 namespace chromeos { | 17 namespace chromeos { |
| 18 | 18 |
| 19 // Special purpose progress bar with labeled steps that is used to show user's | 19 // Special purpose progress bar with labeled steps that is used to show user's |
| 20 // progress in OOBE process. | 20 // progress in OOBE process. |
| 21 class OobeProgressBar : public views::View { | 21 class OobeProgressBar : public views::View { |
| 22 public: | 22 public: |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 // Index of the current step. | 55 // Index of the current step. |
| 56 size_t progress_; | 56 size_t progress_; |
| 57 | 57 |
| 58 DISALLOW_COPY_AND_ASSIGN(OobeProgressBar); | 58 DISALLOW_COPY_AND_ASSIGN(OobeProgressBar); |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 } // namespace chromeos | 61 } // namespace chromeos |
| 62 | 62 |
| 63 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_PROGRESS_BAR_H_ | 63 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_PROGRESS_BAR_H_ |
| OLD | NEW |