| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_AFTER_STARTUP_TASK_UTILS_H_ | 5 #ifndef CHROME_BROWSER_AFTER_STARTUP_TASK_UTILS_H_ |
| 6 #define CHROME_BROWSER_AFTER_STARTUP_TASK_UTILS_H_ | 6 #define CHROME_BROWSER_AFTER_STARTUP_TASK_UTILS_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 | 11 |
| 12 namespace android { | 12 namespace android { |
| 13 class AfterStartupTaskUtilsJNI; | 13 class AfterStartupTaskUtilsJNI; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class TaskRunner; | 17 class TaskRunner; |
| 18 } | 18 } |
| 19 namespace tracked_objects { | 19 namespace tracked_objects { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 48 // SetBrowserStartupIsComplete() directly. Ideally it would use | 48 // SetBrowserStartupIsComplete() directly. Ideally it would use |
| 49 // StartMonitoringStartup() as the normal approach. | 49 // StartMonitoringStartup() as the normal approach. |
| 50 friend class android::AfterStartupTaskUtilsJNI; | 50 friend class android::AfterStartupTaskUtilsJNI; |
| 51 | 51 |
| 52 static void SetBrowserStartupIsComplete(); | 52 static void SetBrowserStartupIsComplete(); |
| 53 | 53 |
| 54 DISALLOW_IMPLICIT_CONSTRUCTORS(AfterStartupTaskUtils); | 54 DISALLOW_IMPLICIT_CONSTRUCTORS(AfterStartupTaskUtils); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 #endif // CHROME_BROWSER_AFTER_STARTUP_TASK_UTILS_H_ | 57 #endif // CHROME_BROWSER_AFTER_STARTUP_TASK_UTILS_H_ |
| OLD | NEW |