// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_PDF_COMMON_CONSTANTS_H_ #define COMPONENTS_PDF_COMMON_CONSTANTS_H_ namespace pdf { // MIME type of the internal PDF plugin. inline constexpr char kInternalPluginMimeType[] = …; // MIME type of PDFs. inline constexpr char kPDFMimeType[] = …; } // namespace pdf #endif // COMPONENTS_PDF_COMMON_CONSTANTS_H_