• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #include "chrome/browser/extensions/extension_debugger_api_constants.h"
6 
7 namespace extension_debugger_api_constants {
8 
9 const char kCommandKey[] = "command";
10 const char kDataKey[] = "data";
11 const char kTabIdKey[] = "tabId";
12 
13 const char kOnEvent[] = "experimental.debugger.onEvent";
14 const char kOnDetach[] = "experimental.debugger.onDetach";
15 
16 const char kAlreadyAttachedError[] =
17     "Another debugger is already attached to the tab with id: *.";
18 const char kDebuggerExecuteFailedError[] = "Execute debugger failed.";
19 const char kNoTabError[] = "No tab with given id *.";
20 const char kNotAttachedError[] =
21     "Debugger is not attached to the tab with id: *.";
22 const char kPermissionError[] = "You do not have permission to debug pages.";
23 
24 }  // namespace extension_debugger_api_constants
25