diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-05 16:58:52 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-05 16:58:52 +0000 |
commit | fb1f9a26f9138e0f2d23e4fd1c4bd9258f5eacc1 (patch) | |
tree | ec789f96dd7739225cdd9b5630588716336e0845 /chrome/browser/debugger/debugger_remote_service.h | |
parent | 777757e36a68533d8831609d4afcb359c0aedc3c (diff) | |
download | chromium_src-fb1f9a26f9138e0f2d23e4fd1c4bd9258f5eacc1.zip chromium_src-fb1f9a26f9138e0f2d23e4fd1c4bd9258f5eacc1.tar.gz chromium_src-fb1f9a26f9138e0f2d23e4fd1c4bd9258f5eacc1.tar.bz2 |
chrome: Remove 7 exit time constructors and 3 static initializers
BUG=101600,94925
TEST=none
Review URL: http://codereview.chromium.org/8478021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108794 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/debugger/debugger_remote_service.h')
-rw-r--r-- | chrome/browser/debugger/debugger_remote_service.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/debugger/debugger_remote_service.h b/chrome/browser/debugger/debugger_remote_service.h index 3b4c9db..02d75d3 100644 --- a/chrome/browser/debugger/debugger_remote_service.h +++ b/chrome/browser/debugger/debugger_remote_service.h @@ -26,12 +26,12 @@ class Value; // Contains constants for DebuggerRemoteService tool protocol commands // (V8-related only). struct DebuggerRemoteServiceCommand { - static const char* const kAttach; - static const char* const kDetach; - static const char* const kDebuggerCommand; - static const char* const kEvaluateJavascript; - static const char* const kFrameNavigate; // navigation event - static const char* const kTabClosed; // tab closing event + static const char kAttach[]; + static const char kDetach[]; + static const char kDebuggerCommand[]; + static const char kEvaluateJavascript[]; + static const char kFrameNavigate[]; // navigation event + static const char kTabClosed[]; // tab closing event }; // Handles V8 debugger-related messages from the remote debugger (like @@ -75,7 +75,7 @@ class DebuggerRemoteService : public DevToolsRemoteListener { virtual void OnConnectionLost(); // Specifies a tool name ("V8Debugger") handled by this class. - static const std::string kToolName; + static const char kToolName[]; private: // Operation result returned in the "result" field. |