| Index: chromecast/crash/app_state_tracker.cc
 | 
| diff --git a/chromecast/crash/app_state_tracker.cc b/chromecast/crash/app_state_tracker.cc
 | 
| index b563ece66cdb1c5993fe6ca720881ab07d98eda9..8910723ada79ae73f03da5b55dc5611f045de226 100644
 | 
| --- a/chromecast/crash/app_state_tracker.cc
 | 
| +++ b/chromecast/crash/app_state_tracker.cc
 | 
| @@ -15,7 +15,8 @@ struct CurrentAppState {
 | 
|    std::string last_launched_app;
 | 
|  };
 | 
|  
 | 
| -base::LazyInstance<CurrentAppState> g_app_state = LAZY_INSTANCE_INITIALIZER;
 | 
| +base::LazyInstance<CurrentAppState>::DestructorAtExit g_app_state =
 | 
| +    LAZY_INSTANCE_INITIALIZER;
 | 
|  
 | 
|  CurrentAppState* GetAppState() {
 | 
|    return g_app_state.Pointer();
 | 
| 
 |