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

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

Issue 2782113002: Add component for feature engagement tracking. (Closed)
Patch Set: define component targets on all platforms Created 3 years, 8 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
« no previous file with comments | « chrome/common/chrome_constants.h ('k') | components/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/chrome_constants.h" 5 #include "chrome/common/chrome_constants.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "chrome/common/chrome_version.h" 8 #include "chrome/common/chrome_version.h"
9 9
10 #define FPL FILE_PATH_LITERAL 10 #define FPL FILE_PATH_LITERAL
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); 138 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies");
139 const base::FilePath::CharType kCRLSetFilename[] = 139 const base::FilePath::CharType kCRLSetFilename[] =
140 FPL("Certificate Revocation Lists"); 140 FPL("Certificate Revocation Lists");
141 const base::FilePath::CharType kCustomDictionaryFileName[] = 141 const base::FilePath::CharType kCustomDictionaryFileName[] =
142 FPL("Custom Dictionary.txt"); 142 FPL("Custom Dictionary.txt");
143 const base::FilePath::CharType kExtensionActivityLogFilename[] = 143 const base::FilePath::CharType kExtensionActivityLogFilename[] =
144 FPL("Extension Activity"); 144 FPL("Extension Activity");
145 const base::FilePath::CharType kExtensionsCookieFilename[] = 145 const base::FilePath::CharType kExtensionsCookieFilename[] =
146 FPL("Extension Cookies"); 146 FPL("Extension Cookies");
147 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); 147 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run");
148 const base::FilePath::CharType kFeatureEngagementTrackerStorageDirname[] =
sky 2017/03/31 00:10:15 keep sorted (move above kFirstRunSentinel, which y
nyquist 2017/03/31 00:15:40 Oops! Thanks! Done.
149 FPL("Feature Engagement Tracker");
148 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); 150 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store");
149 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); 151 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State");
150 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); 152 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool");
151 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); 153 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache");
152 const base::FilePath::CharType kNetworkPersistentStateFilename[] = 154 const base::FilePath::CharType kNetworkPersistentStateFilename[] =
153 FPL("Network Persistent State"); 155 FPL("Network Persistent State");
154 const base::FilePath::CharType kOfflinePageArchivesDirname[] = 156 const base::FilePath::CharType kOfflinePageArchivesDirname[] =
155 FPL("Offline Pages/archives"); 157 FPL("Offline Pages/archives");
156 const base::FilePath::CharType kOfflinePageMetadataDirname[] = 158 const base::FilePath::CharType kOfflinePageMetadataDirname[] =
157 FPL("Offline Pages/metadata"); 159 FPL("Offline Pages/metadata");
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 // user can select for different file types. 212 // user can select for different file types.
211 // {2676A9A2-D919-4FEE-9187-152100393AB2} 213 // {2676A9A2-D919-4FEE-9187-152100393AB2}
212 const char kApplicationClientIDStringForAVScanning[] = 214 const char kApplicationClientIDStringForAVScanning[] =
213 "2676A9A2-D919-4FEE-9187-152100393AB2"; 215 "2676A9A2-D919-4FEE-9187-152100393AB2";
214 216
215 const size_t kMaxMetaTagAttributeLength = 2000; 217 const size_t kMaxMetaTagAttributeLength = 2000;
216 218
217 } // namespace chrome 219 } // namespace chrome
218 220
219 #undef FPL 221 #undef FPL
OLDNEW
« no previous file with comments | « chrome/common/chrome_constants.h ('k') | components/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698