OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_TIMER_ALARM_TIMER_H_ | 5 #ifndef COMPONENTS_TIMER_ALARM_TIMER_H_ |
6 #define COMPONENTS_TIMER_ALARM_TIMER_H_ | 6 #define COMPONENTS_TIMER_ALARM_TIMER_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
95 // destruction of that message loop. | 95 // destruction of that message loop. |
96 base::MessageLoop* origin_message_loop_; | 96 base::MessageLoop* origin_message_loop_; |
97 | 97 |
98 base::WeakPtrFactory<AlarmTimer> weak_factory_; | 98 base::WeakPtrFactory<AlarmTimer> weak_factory_; |
99 | 99 |
100 DISALLOW_COPY_AND_ASSIGN(AlarmTimer); | 100 DISALLOW_COPY_AND_ASSIGN(AlarmTimer); |
101 }; | 101 }; |
102 | 102 |
103 } // namespace timers | 103 } // namespace timers |
104 | 104 |
105 | |
Daniel Erat
2014/11/06 20:43:15
what are the extra blank lines here and in the oth
Chirantan Ekbote
2014/11/06 20:45:34
I had to make a whitespace change so that git woul
| |
105 #endif // COMPONENTS_TIMER_ALARM_TIMER_H_ | 106 #endif // COMPONENTS_TIMER_ALARM_TIMER_H_ |
OLD | NEW |