OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 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 CHROME_BROWSER_EXTENSIONS_SOCKET_API_CONSTANTS_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_SOCKET_API_CONSTANTS_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/values.h" |
| 11 |
| 12 namespace extensions { |
| 13 |
| 14 namespace socket_api_constants { |
| 15 |
| 16 extern const char kBytesWrittenKey[]; |
| 17 extern const char kSocketIdKey[]; |
| 18 |
| 19 extern const char kUdpSocketType[]; |
| 20 |
| 21 } // namespace socket_api_constants |
| 22 |
| 23 } // namespace extensions |
| 24 |
| 25 #endif // CHROME_BROWSER_EXTENSIONS_SOCKET_API_CONSTANTS_H_ |
OLD | NEW |