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

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

Issue 568823003: Merge Android RetrieveWebappInformation and Extensions GetApplicationInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@manifest_manager_content
Patch Set: review comments Created 6 years, 3 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/chrome_constants.h" 5 #include "chrome/common/chrome_constants.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 8
9 #define FPL FILE_PATH_LITERAL 9 #define FPL FILE_PATH_LITERAL
10 10
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 const char kLegacyProfileDir[] = "user"; 249 const char kLegacyProfileDir[] = "user";
250 const char kTestUserProfileDir[] = "test-user"; 250 const char kTestUserProfileDir[] = "test-user";
251 #endif 251 #endif
252 252
253 // This GUID is associated with any 'don't ask me again' settings that the 253 // This GUID is associated with any 'don't ask me again' settings that the
254 // user can select for different file types. 254 // user can select for different file types.
255 // {2676A9A2-D919-4FEE-9187-152100393AB2} 255 // {2676A9A2-D919-4FEE-9187-152100393AB2}
256 const char kApplicationClientIDStringForAVScanning[] = 256 const char kApplicationClientIDStringForAVScanning[] =
257 "2676A9A2-D919-4FEE-9187-152100393AB2"; 257 "2676A9A2-D919-4FEE-9187-152100393AB2";
258 258
259 #if defined(OS_ANDROID) 259 const size_t kMaxMetaTagAttributeLength = 4 * 1024;
260 const size_t kMaxMetaTagAttributeLength = 2000;
gone 2014/09/15 16:55:17 This number was decided with security, IIRC. Can
mlamouri (slow - plz ping) 2014/09/15 20:30:53 Reverted.
261 #endif
262 260
263 } // namespace chrome 261 } // namespace chrome
264 262
265 #undef FPL 263 #undef FPL
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698