Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(515)

Unified Diff: chrome/browser/extensions/extension_debugger_api_constants.cc

Issue 10762006: Moved c/b/e/*debugger* to c/b/e/api/debugger/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Missed some files =) Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_debugger_api_constants.cc
diff --git a/chrome/browser/extensions/extension_debugger_api_constants.cc b/chrome/browser/extensions/extension_debugger_api_constants.cc
deleted file mode 100644
index 973096ff058b1471f9fe41c3d4364b45378f8103..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/extension_debugger_api_constants.cc
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/extensions/extension_debugger_api_constants.h"
-
-namespace extension_debugger_api_constants {
-
-const char kCommandKey[] = "command";
-const char kDataKey[] = "data";
-const char kTabIdKey[] = "tabId";
-const char kVersionIdKey[] = "requiredVersion";
-
-const char kOnEvent[] = "debugger.onEvent";
-const char kOnDetach[] = "debugger.onDetach";
-
-const char kAlreadyAttachedError[] =
- "Another debugger is already attached to the tab with id: *.";
-const char kAttachToWebUIError[] =
- "Can not attach to the page with the \"*://\" scheme.";
-const char kDebuggerExecuteFailedError[] = "Execute debugger failed.";
-const char kNoTabError[] = "No tab with given id *.";
-const char kNotAttachedError[] =
- "Debugger is not attached to the tab with id: *.";
-const char kPermissionError[] = "You do not have permission to debug pages.";
-const char kProtocolVersionNotSupportedError[] =
- "Requested protocol version is not supported: *.";
-
-} // namespace extension_debugger_api_constants

Powered by Google App Engine
This is Rietveld 408576698