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

Unified Diff: chrome/browser/debugger/debugger_remote_service.h

Issue 7826038: Get rid of some static initializers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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
« no previous file with comments | « no previous file | chrome/browser/debugger/debugger_remote_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/debugger/debugger_remote_service.h
diff --git a/chrome/browser/debugger/debugger_remote_service.h b/chrome/browser/debugger/debugger_remote_service.h
index 113fc8fd050ffeb4657c27155a1667c33a5af601..3b4c9db89fea909173137a91cb98ab8c4d2d9968 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 std::string kAttach;
- static const std::string kDetach;
- static const std::string kDebuggerCommand;
- static const std::string kEvaluateJavascript;
- static const std::string kFrameNavigate; // navigation event
- static const std::string kTabClosed; // tab closing event
+ 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
};
// Handles V8 debugger-related messages from the remote debugger (like
« no previous file with comments | « no previous file | chrome/browser/debugger/debugger_remote_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698