| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 ASH_FIRST_RUN_FIRST_RUN_HELPER_H_ | 5 #ifndef ASH_FIRST_RUN_FIRST_RUN_HELPER_H_ |
| 6 #define ASH_FIRST_RUN_FIRST_RUN_HELPER_H_ | 6 #define ASH_FIRST_RUN_FIRST_RUN_HELPER_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 private: | 65 private: |
| 66 base::ObserverList<Observer> observers_; | 66 base::ObserverList<Observer> observers_; |
| 67 | 67 |
| 68 DISALLOW_COPY_AND_ASSIGN(FirstRunHelper); | 68 DISALLOW_COPY_AND_ASSIGN(FirstRunHelper); |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace ash | 71 } // namespace ash |
| 72 | 72 |
| 73 #endif // ASH_FIRST_RUN_FIRST_RUN_HELPER_H_ | 73 #endif // ASH_FIRST_RUN_FIRST_RUN_HELPER_H_ |
| 74 | |
| OLD | NEW |