Import the chrome_paths code
This commit is contained in:
parent
996a3c2a35
commit
83ae9f8d71
9 changed files with 1519 additions and 0 deletions
50
chromium_src/chrome/common/chrome_constants.h
Normal file
50
chromium_src/chrome/common/chrome_constants.h
Normal file
|
@ -0,0 +1,50 @@
|
|||
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
// A handful of resource-like constants related to the Chrome application.
|
||||
|
||||
#ifndef CHROME_COMMON_CHROME_CONSTANTS_H_
|
||||
#define CHROME_COMMON_CHROME_CONSTANTS_H_
|
||||
|
||||
#include "base/files/file_path.h"
|
||||
|
||||
namespace chrome {
|
||||
|
||||
// filenames
|
||||
extern const base::FilePath::CharType kCacheDirname[];
|
||||
extern const base::FilePath::CharType kChannelIDFilename[];
|
||||
extern const base::FilePath::CharType kCookieFilename[];
|
||||
extern const base::FilePath::CharType kCRLSetFilename[];
|
||||
extern const base::FilePath::CharType kCustomDictionaryFileName[];
|
||||
extern const base::FilePath::CharType kExtensionActivityLogFilename[];
|
||||
extern const base::FilePath::CharType kExtensionsCookieFilename[];
|
||||
extern const base::FilePath::CharType kFirstRunSentinel[];
|
||||
extern const base::FilePath::CharType kGCMStoreDirname[];
|
||||
extern const base::FilePath::CharType kLocalStateFilename[];
|
||||
extern const base::FilePath::CharType kLocalStorePoolName[];
|
||||
extern const base::FilePath::CharType kMediaCacheDirname[];
|
||||
extern const base::FilePath::CharType kNetworkPersistentStateFilename[];
|
||||
extern const base::FilePath::CharType kOfflinePageArchviesDirname[];
|
||||
extern const base::FilePath::CharType kOfflinePageMetadataDirname[];
|
||||
extern const base::FilePath::CharType kPreferencesFilename[];
|
||||
extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[];
|
||||
extern const base::FilePath::CharType kReadmeFilename[];
|
||||
extern const base::FilePath::CharType kResetPromptMementoFilename[];
|
||||
extern const base::FilePath::CharType kSafeBrowsingBaseFilename[];
|
||||
extern const base::FilePath::CharType kSecurePreferencesFilename[];
|
||||
extern const base::FilePath::CharType kServiceStateFileName[];
|
||||
extern const base::FilePath::CharType kSingletonCookieFilename[];
|
||||
extern const base::FilePath::CharType kSingletonLockFilename[];
|
||||
extern const base::FilePath::CharType kSingletonSocketFilename[];
|
||||
extern const base::FilePath::CharType kSupervisedUserSettingsFilename[];
|
||||
extern const base::FilePath::CharType kThemePackFilename[];
|
||||
extern const base::FilePath::CharType kThemePackMaterialDesignFilename[];
|
||||
extern const base::FilePath::CharType kWebAppDirname[];
|
||||
|
||||
// File name of the Pepper Flash plugin on different platforms.
|
||||
extern const base::FilePath::CharType kPepperFlashPluginFilename[];
|
||||
|
||||
} // namespace chrome
|
||||
|
||||
#endif // CHROME_COMMON_CHROME_CONSTANTS_H_
|
Loading…
Add table
Add a link
Reference in a new issue