| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 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 | 
|  | 3 // found in the LICENSE file. | 
|  | 4 | 
|  | 5 #ifndef IOS_CHROME_APP_MEMORY_MONITOR_H_ | 
|  | 6 #define IOS_CHROME_APP_MEMORY_MONITOR_H_ | 
|  | 7 | 
|  | 8 namespace ios_internal { | 
|  | 9 | 
|  | 10 // Timer to launch [UpdateBreakpadMemoryValues] every 5 seconds. | 
|  | 11 void AsynchronousFreeMemoryMonitor(); | 
|  | 12 | 
|  | 13 // Checks the values of free RAM and free disk space and updates breakpad with | 
|  | 14 // these values. | 
|  | 15 void UpdateBreakpadMemoryValues(); | 
|  | 16 | 
|  | 17 }  // namespace ios_internal | 
|  | 18 | 
|  | 19 #endif  // IOS_CHROME_APP_MEMORY_MONITOR_H_ | 
| OLD | NEW | 
|---|