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

Unified Diff: gpu/command_buffer/common/debug_marker_manager.cc

Issue 149573004: Cleanup: Remove std::string("") usage. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 years, 11 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: gpu/command_buffer/common/debug_marker_manager.cc
===================================================================
--- gpu/command_buffer/common/debug_marker_manager.cc (revision 247534)
+++ gpu/command_buffer/common/debug_marker_manager.cc (working copy)
@@ -21,7 +21,7 @@
DebugMarkerManager::DebugMarkerManager() {
// Push root group.
- group_stack_.push(Group(std::string("")));
+ group_stack_.push(Group(std::string()));
}
DebugMarkerManager::~DebugMarkerManager() {

Powered by Google App Engine
This is Rietveld 408576698