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

Side by Side Diff: chrome/common/pref_names.cc

Issue 1986673002: [Offline Pages] Updated clearing logic in storage manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing trybots. Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
(...skipping 2158 matching lines...) Expand 10 before | Expand all | Expand 10 after
2169 // Whether or not the user has enabled cloud services with Media Router. 2169 // Whether or not the user has enabled cloud services with Media Router.
2170 const char kMediaRouterEnableCloudServices[] = 2170 const char kMediaRouterEnableCloudServices[] =
2171 "media_router.cloudservices.enabled"; 2171 "media_router.cloudservices.enabled";
2172 #endif // defined(GOOGLE_CHROME_BUILD) 2172 #endif // defined(GOOGLE_CHROME_BUILD)
2173 // Whether or not the Media Router first run flow has been acknowledged by the 2173 // Whether or not the Media Router first run flow has been acknowledged by the
2174 // user. 2174 // user.
2175 const char kMediaRouterFirstRunFlowAcknowledged[] = 2175 const char kMediaRouterFirstRunFlowAcknowledged[] =
2176 "media_router.firstrunflow.acknowledged"; 2176 "media_router.firstrunflow.acknowledged";
2177 #endif 2177 #endif
2178 2178
2179 #if BUILDFLAG(ANDROID_JAVA_UI)
2180 const char kOfflinePageStorageLastClearedTime[] =
2181 "offline_page.storage.last_cleared_time";
2182 #endif
2183
2179 } // namespace prefs 2184 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698