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

Unified Diff: chrome/renderer/module_system.cc

Issue 10883050: Fix weird indenting in ModuleSystem::DumpException(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/module_system.cc
diff --git a/chrome/renderer/module_system.cc b/chrome/renderer/module_system.cc
index 57b2e8de952a5632b69880df3026e717fcb7aab2..97a3bd38d9e32d549a984a157ed67e37762945c1 100644
--- a/chrome/renderer/module_system.cc
+++ b/chrome/renderer/module_system.cc
@@ -69,8 +69,8 @@ void ModuleSystem::DumpException(const v8::TryCatch& try_catch) {
std::string resource_name = "<unknown resource>";
if (!message->GetScriptResourceName().IsEmpty()) {
- resource_name = *v8::String::Utf8Value(
- message->GetScriptResourceName()->ToString());
+ resource_name =
+ *v8::String::Utf8Value(message->GetScriptResourceName()->ToString());
}
std::string error_message = "<no error message>";
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698