Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / browser / extensions / api / debugger / debugger_api_constants.h
blobf79b7b8ed272d07c6546dc3fa221376fe885728a
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 {
12 // Events.
13 extern const char kOnEvent[];
14 extern const char kOnDetach[];
16 // Errors.
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[];
24 // Target types.
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_