OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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 |
| 5 #ifndef EXTENSIONS_COMMON_EXTENSION_ID_H_ |
| 6 #define EXTENSIONS_COMMON_EXTENSION_ID_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 namespace extensions { |
| 11 |
| 12 // If valid, uniquely identifies an Extension using 32 characters from the |
| 13 // alphabet 'a'-'p'. |
| 14 using ExtensionId = std::string; |
| 15 |
| 16 } // namespace extensions |
| 17 |
| 18 #endif // EXTENSIONS_COMMON_EXTENSION_ID_H_ |
OLD | NEW |