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

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

Issue 2838034: Move the SingletonSocket to a temporary directory (Closed)
Patch Set: Address mattm's comments Created 10 years, 4 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) 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 extern const FilePath::CharType kAppCacheDirname[]; 44 extern const FilePath::CharType kAppCacheDirname[];
45 extern const FilePath::CharType kChromePluginDataDirname[]; 45 extern const FilePath::CharType kChromePluginDataDirname[];
46 extern const FilePath::CharType kThemePackFilename[]; 46 extern const FilePath::CharType kThemePackFilename[];
47 extern const FilePath::CharType kCookieFilename[]; 47 extern const FilePath::CharType kCookieFilename[];
48 extern const FilePath::CharType kExtensionsCookieFilename[]; 48 extern const FilePath::CharType kExtensionsCookieFilename[];
49 extern const FilePath::CharType kFaviconsFilename[]; 49 extern const FilePath::CharType kFaviconsFilename[];
50 extern const FilePath::CharType kHistoryFilename[]; 50 extern const FilePath::CharType kHistoryFilename[];
51 extern const FilePath::CharType kLocalStateFilename[]; 51 extern const FilePath::CharType kLocalStateFilename[];
52 extern const FilePath::CharType kPreferencesFilename[]; 52 extern const FilePath::CharType kPreferencesFilename[];
53 extern const FilePath::CharType kSafeBrowsingFilename[]; 53 extern const FilePath::CharType kSafeBrowsingFilename[];
54 extern const FilePath::CharType kSingletonCookieFilename[];
54 extern const FilePath::CharType kSingletonSocketFilename[]; 55 extern const FilePath::CharType kSingletonSocketFilename[];
55 extern const FilePath::CharType kSingletonLockFilename[]; 56 extern const FilePath::CharType kSingletonLockFilename[];
56 extern const FilePath::CharType kThumbnailsFilename[]; 57 extern const FilePath::CharType kThumbnailsFilename[];
57 extern const FilePath::CharType kNewTabThumbnailsFilename[]; 58 extern const FilePath::CharType kNewTabThumbnailsFilename[];
58 extern const FilePath::CharType kTopSitesFilename[]; 59 extern const FilePath::CharType kTopSitesFilename[];
59 extern const wchar_t kUserDataDirname[]; 60 extern const wchar_t kUserDataDirname[];
60 extern const FilePath::CharType kUserScriptsDirname[]; 61 extern const FilePath::CharType kUserScriptsDirname[];
61 extern const FilePath::CharType kWebDataFilename[]; 62 extern const FilePath::CharType kWebDataFilename[];
62 extern const FilePath::CharType kBookmarksFileName[]; 63 extern const FilePath::CharType kBookmarksFileName[];
63 extern const FilePath::CharType kHistoryBookmarksFileName[]; 64 extern const FilePath::CharType kHistoryBookmarksFileName[];
(...skipping 28 matching lines...) Expand all
92 93
93 extern const wchar_t kChromiumRendererIdProperty[]; 94 extern const wchar_t kChromiumRendererIdProperty[];
94 95
95 // The language code used when the language of a page could not be detected. 96 // The language code used when the language of a page could not be detected.
96 // (Matches what the CLD -Compact Language Detection- library reports.) 97 // (Matches what the CLD -Compact Language Detection- library reports.)
97 extern const char* const kUnknownLanguageCode; 98 extern const char* const kUnknownLanguageCode;
98 99
99 } // namespace chrome 100 } // namespace chrome
100 101
101 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 102 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698