Upstream version 9.37.195.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / api / debugger / debugger_api_constants.cc
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 kNoTargetError[] = "No * with given id *.";
12 const char kInvalidTargetError[] =
13     "Either tab id or extension id must be specified.";
14 const char kNotAttachedError[] =
15     "Debugger is not attached to the * with id: *.";
16 const char kProtocolVersionNotSupportedError[] =
17     "Requested protocol version is not supported: *.";
18 const char kSilentDebuggingRequired[] =
19     "Cannot attach to this target unless '*' flag is enabled.";
20
21 const char kTabTargetType[] = "tab";
22 const char kBackgroundPageTargetType[] = "background page";
23 const char kOpaqueTargetType[] = "target";
24
25 }  // namespace debugger_api_constants