[M120 Migration][VD] Enable direct rendering for TVPlus
[platform/framework/web/chromium-efl.git] / components / crx_file / crx_file.h
1 // Copyright 2017 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_CRX_FILE_CRX_FILE_H_
6 #define COMPONENTS_CRX_FILE_CRX_FILE_H_
7
8 namespace crx_file {
9
10 // The magic string embedded in the header.
11 constexpr char kCrxFileHeaderMagic[] = "Cr24";
12 constexpr char kCrxDiffFileHeaderMagic[] = "CrOD";
13 constexpr int kCrxFileHeaderMagicSize = 4;
14 constexpr char kSignatureContext[] = "CRX3 SignedData";
15
16 }  // namespace crx_file
17
18 #endif  // COMPONENTS_CRX_FILE_CRX_FILE_H_