Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 IOS_CHROME_BROWSER_METRICS_PREVIOUS_SESSION_INFO_PRIVATE_H_ | |
| 6 #define IOS_CHROME_BROWSER_METRICS_PREVIOUS_SESSION_INFO_PRIVATE_H_ | |
| 7 | |
| 8 @interface PreviousSessionInfo (TestingOnly) | |
| 9 | |
| 10 // Redefined to be read-write. | |
| 11 @property(nonatomic, assign) BOOL didSeeMemoryWarningShortlyBeforeTerminating; | |
| 12 | |
| 13 // Redefined to be read-write. | |
| 14 @property(nonatomic, assign) BOOL isFirstSessionAfterUpgrade; | |
|
Olivier
2016/05/26 12:18:30
is this needed ?
gambard
2016/05/26 12:22:14
Used downstream.
| |
| 15 | |
| 16 + (void)resetSharedInstanceForTesting; | |
| 17 | |
| 18 @end | |
| 19 | |
| 20 #endif // IOS_CHROME_BROWSER_METRICS_PREVIOUS_SESSION_INFO_PRIVATE_H_ | |
| OLD | NEW |