| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_LIFETIME_APPLICATION_LIFETIME_INTERNAL_H_ |
| 6 #define CHROME_BROWSER_LIFETIME_APPLICATION_LIFETIME_INTERNAL_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 |
| 10 // Various helper functions shared between application_lifetime* files. |
| 11 |
| 12 namespace chrome { |
| 13 |
| 14 namespace internal { |
| 15 |
| 16 void AttemptExitInternal(bool try_to_quit_application); |
| 17 |
| 18 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 19 #if defined(OS_CHROMEOS) |
| 20 void NotifyAndTerminateInternalCrOS(); |
| 21 #else |
| 22 void AttemptExitInternalDesktop(); |
| 23 #endif |
| 24 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) |
| 25 |
| 26 } // namespace internal |
| 27 |
| 28 } // namespace chrome |
| 29 |
| 30 #endif // CHROME_BROWSER_LIFETIME_APPLICATION_LIFETIME_INTERNAL_H_ |
| 31 |
| OLD | NEW |