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

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

Issue 6201005: Initial support for partitioning cookies for isolated apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix automation_util and thread issue. Created 9 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // A handful of resource-like constants related to the Chrome application. 5 // A handful of resource-like constants related to the Chrome application.
6 6
7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_
8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 30 matching lines...) Expand all
41 // filenames 41 // filenames
42 extern const FilePath::CharType kArchivedHistoryFilename[]; 42 extern const FilePath::CharType kArchivedHistoryFilename[];
43 extern const FilePath::CharType kCacheDirname[]; 43 extern const FilePath::CharType kCacheDirname[];
44 extern const FilePath::CharType kMediaCacheDirname[]; 44 extern const FilePath::CharType kMediaCacheDirname[];
45 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; 45 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[];
46 extern const FilePath::CharType kAppCacheDirname[]; 46 extern const FilePath::CharType kAppCacheDirname[];
47 extern const FilePath::CharType kChromePluginDataDirname[]; 47 extern const FilePath::CharType kChromePluginDataDirname[];
48 extern const FilePath::CharType kThemePackFilename[]; 48 extern const FilePath::CharType kThemePackFilename[];
49 extern const FilePath::CharType kCookieFilename[]; 49 extern const FilePath::CharType kCookieFilename[];
50 extern const FilePath::CharType kExtensionsCookieFilename[]; 50 extern const FilePath::CharType kExtensionsCookieFilename[];
51 extern const FilePath::CharType kIsolatedAppStateDirname[];
51 extern const FilePath::CharType kFaviconsFilename[]; 52 extern const FilePath::CharType kFaviconsFilename[];
52 extern const FilePath::CharType kHistoryFilename[]; 53 extern const FilePath::CharType kHistoryFilename[];
53 extern const FilePath::CharType kLocalStateFilename[]; 54 extern const FilePath::CharType kLocalStateFilename[];
54 extern const FilePath::CharType kPreferencesFilename[]; 55 extern const FilePath::CharType kPreferencesFilename[];
55 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; 56 extern const FilePath::CharType kSafeBrowsingBaseFilename[];
56 extern const FilePath::CharType kSafeBrowsingPhishingModelFilename[]; 57 extern const FilePath::CharType kSafeBrowsingPhishingModelFilename[];
57 extern const FilePath::CharType kSingletonCookieFilename[]; 58 extern const FilePath::CharType kSingletonCookieFilename[];
58 extern const FilePath::CharType kSingletonSocketFilename[]; 59 extern const FilePath::CharType kSingletonSocketFilename[];
59 extern const FilePath::CharType kSingletonLockFilename[]; 60 extern const FilePath::CharType kSingletonLockFilename[];
60 extern const FilePath::CharType kThumbnailsFilename[]; 61 extern const FilePath::CharType kThumbnailsFilename[];
(...skipping 25 matching lines...) Expand all
86 // The maximum number of session history entries per tab. 87 // The maximum number of session history entries per tab.
87 extern const int kMaxSessionHistoryEntries; 88 extern const int kMaxSessionHistoryEntries;
88 89
89 // The language code used when the language of a page could not be detected. 90 // The language code used when the language of a page could not be detected.
90 // (Matches what the CLD -Compact Language Detection- library reports.) 91 // (Matches what the CLD -Compact Language Detection- library reports.)
91 extern const char* const kUnknownLanguageCode; 92 extern const char* const kUnknownLanguageCode;
92 93
93 } // namespace chrome 94 } // namespace chrome
94 95
95 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 96 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698