• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
4 
5 #include "chrome/browser/extensions/api/debugger/debugger_api_constants.h"
6 
7 namespace debugger_api_constants {
8 
9 const char kAlreadyAttachedError[] =
10     "Another debugger is already attached to the * with id: *.";
11 const char kAttachToWebUIError[] =
12     "Can not attach to the page with the \"*://\" scheme.";
13 const char kNoTargetError[] = "No * with given id *.";
14 const char kInvalidTargetError[] =
15     "Either tab id or extension id must be specified.";
16 const char kNotAttachedError[] =
17     "Debugger is not attached to the * with id: *.";
18 const char kProtocolVersionNotSupportedError[] =
19     "Requested protocol version is not supported: *.";
20 const char kSilentDebuggingRequired[] =
21     "Cannot attach to this target unless '*' flag is enabled.";
22 
23 const char kTabTargetType[] = "tab";
24 const char kBackgroundPageTargetType[] = "background page";
25 const char kOpaqueTargetType[] = "target";
26 
27 }  // namespace debugger_api_constants
28