Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Unified Diff: components/sync_driver/sync_prefs.h

Issue 1136763004: Add UMA data for memory pressure warning received for sync (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/sync_driver/sync_prefs.h
diff --git a/components/sync_driver/sync_prefs.h b/components/sync_driver/sync_prefs.h
index 23109467a46dc4be4d3a20a9a7934279c50cab2e..767633f8ef6410afe7b486d9efc74935a8f4713d 100644
--- a/components/sync_driver/sync_prefs.h
+++ b/components/sync_driver/sync_prefs.h
@@ -140,6 +140,16 @@ class SyncPrefs : NON_EXPORTED_BASE(public base::NonThreadSafe),
// For testing.
void SetManagedForTest(bool is_managed);
+ // Get/Set number of memory warning received.
+ int GetMemoryPressureWarningCount() const;
+ void SetMemoryPressureWarningCount(int value);
+
+ // Check if previous shutdown cleanly.
+ bool IsPreviousShutdownCleanly() const;
stanisc 2015/05/15 22:06:48 The function name could be a bit clearer.
Gang Wu 2015/05/15 22:22:30 Done.
+
+ // Set the sync service shutdown cleanly.
+ void SetCurrentShutdownCleanly(bool value);
+
private:
void RegisterPrefGroups();

Powered by Google App Engine
This is Rietveld 408576698