extension_guid.h 479 B

1234567891011121314151617
  1. // Copyright 2021 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef EXTENSIONS_COMMON_EXTENSION_GUID_H_
  5. #define EXTENSIONS_COMMON_EXTENSION_GUID_H_
  6. #include <string>
  7. namespace extensions {
  8. // If valid, uniquely identifies an Extension using a generated GUID.
  9. using ExtensionGuid = std::string;
  10. } // namespace extensions
  11. #endif // EXTENSIONS_COMMON_EXTENSION_GUID_H_