1 // Copyright (c) 2012 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.
5 // Constants used for the Cookies API.
7 #ifndef CHROME_BROWSER_EXTENSIONS_API_DEBUGGER_DEBUGGER_API_CONSTANTS_H_
8 #define CHROME_BROWSER_EXTENSIONS_API_DEBUGGER_DEBUGGER_API_CONSTANTS_H_
10 namespace debugger_api_constants
{
13 extern const char kOnEvent
[];
14 extern const char kOnDetach
[];
17 extern const char kAlreadyAttachedError
[];
18 extern const char kNoTargetError
[];
19 extern const char kInvalidTargetError
[];
20 extern const char kNotAttachedError
[];
21 extern const char kProtocolVersionNotSupportedError
[];
22 extern const char kSilentDebuggingRequired
[];
25 extern const char kTabTargetType
[];
26 extern const char kBackgroundPageTargetType
[];
27 extern const char kOpaqueTargetType
[];
29 } // namespace debugger_api_constants
31 #endif // CHROME_BROWSER_EXTENSIONS_API_DEBUGGER_DEBUGGER_API_CONSTANTS_H_