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

Side by Side Diff: chrome/renderer/module_system.cc

Issue 10894029: Manual merge r153283 to b1180: Make ModuleSystem::DumpException() handle empty handles. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/module_system.h" 5 #include "chrome/renderer/module_system.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScopedMicrotaskSup pression.h" 8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScopedMicrotaskSup pression.h"
9 9
10 namespace { 10 namespace {
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 } 52 }
53 53
54 // static 54 // static
55 bool ModuleSystem::IsPresentInCurrentContext() { 55 bool ModuleSystem::IsPresentInCurrentContext() {
56 v8::Handle<v8::Object> global(v8::Context::GetCurrent()->Global()); 56 v8::Handle<v8::Object> global(v8::Context::GetCurrent()->Global());
57 return !global->GetHiddenValue(v8::String::New(kModuleSystem))->IsUndefined(); 57 return !global->GetHiddenValue(v8::String::New(kModuleSystem))->IsUndefined();
58 } 58 }
59 59
60 // static 60 // static
61 void ModuleSystem::DumpException(v8::Handle<v8::Message> message) { 61 void ModuleSystem::DumpException(v8::Handle<v8::Message> message) {
62 LOG(ERROR) << "[" 62 std::string resource_name = "<unknown resource>";
63 << *v8::String::Utf8Value( 63 if (!message->GetScriptResourceName().IsEmpty()) {
64 message->GetScriptResourceName()->ToString()) 64 resource_name = *v8::String::Utf8Value(
65 << "(" << message->GetLineNumber() << ")] " 65 message->GetScriptResourceName()->ToString());
66 << *v8::String::Utf8Value(message->Get()); 66 }
67
68 std::string error_message = "<no error message>";
69 if (!message->Get().IsEmpty())
70 error_message = *v8::String::Utf8Value(message->Get());
71
72 LOG(ERROR) << "[" << resource_name << "(" << message->GetLineNumber() << ")] "
73 << error_message;
67 } 74 }
68 75
69 void ModuleSystem::Require(const std::string& module_name) { 76 void ModuleSystem::Require(const std::string& module_name) {
70 v8::HandleScope handle_scope; 77 v8::HandleScope handle_scope;
71 RequireForJsInner(v8::String::New(module_name.c_str())); 78 RequireForJsInner(v8::String::New(module_name.c_str()));
72 } 79 }
73 80
74 v8::Handle<v8::Value> ModuleSystem::RequireForJs(const v8::Arguments& args) { 81 v8::Handle<v8::Value> ModuleSystem::RequireForJs(const v8::Arguments& args) {
75 v8::HandleScope handle_scope; 82 v8::HandleScope handle_scope;
76 v8::Handle<v8::String> module_name = args[0]->ToString(); 83 v8::Handle<v8::String> module_name = args[0]->ToString();
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 v8::Handle<v8::String> left = 230 v8::Handle<v8::String> left =
224 v8::String::New("(function(require, requireNative, exports) {"); 231 v8::String::New("(function(require, requireNative, exports) {");
225 v8::Handle<v8::String> right = v8::String::New("\n})"); 232 v8::Handle<v8::String> right = v8::String::New("\n})");
226 return handle_scope.Close( 233 return handle_scope.Close(
227 v8::String::Concat(left, v8::String::Concat(source, right))); 234 v8::String::Concat(left, v8::String::Concat(source, right)));
228 } 235 }
229 236
230 v8::Handle<v8::Value> ModuleSystem::ThrowException(const std::string& message) { 237 v8::Handle<v8::Value> ModuleSystem::ThrowException(const std::string& message) {
231 return v8::ThrowException(v8::String::New(message.c_str())); 238 return v8::ThrowException(v8::String::New(message.c_str()));
232 } 239 }
OLDNEW
« 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