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

Side by Side Diff: Source/WebKit/chromium/src/WebDevToolsFrontendImpl.cpp

Issue 9355009: Merge 107170 - DOM mutations should not be delivered on worker threads (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 10 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
« no previous file with comments | « Source/WebCore/dom/WebKitMutationObserver.cpp ('k') | 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 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 v8::Handle<v8::Object> inspectorBackend = v8::Handle<v8::Object>::Cast(inspe ctorBackendValue); 116 v8::Handle<v8::Object> inspectorBackend = v8::Handle<v8::Object>::Cast(inspe ctorBackendValue);
117 v8::Handle<v8::Value> dispatchFunction = inspectorBackend->Get(v8::String::N ew("dispatch")); 117 v8::Handle<v8::Value> dispatchFunction = inspectorBackend->Get(v8::String::N ew("dispatch"));
118 // The frame might have navigated away from the front-end page (which is st ill weird). 118 // The frame might have navigated away from the front-end page (which is st ill weird).
119 if (!dispatchFunction->IsFunction()) 119 if (!dispatchFunction->IsFunction())
120 return; 120 return;
121 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(dispatchF unction); 121 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(dispatchF unction);
122 Vector< v8::Handle<v8::Value> > args; 122 Vector< v8::Handle<v8::Value> > args;
123 args.append(ToV8String(message)); 123 args.append(ToV8String(message));
124 v8::TryCatch tryCatch; 124 v8::TryCatch tryCatch;
125 tryCatch.SetVerbose(true); 125 tryCatch.SetVerbose(true);
126 V8Proxy::instrumentedCallFunction(frame->frame()->page(), function, inspecto rBackend, args.size(), args.data()); 126 V8Proxy::instrumentedCallFunction(frame->frame(), function, inspectorBackend , args.size(), args.data());
127 } 127 }
128 128
129 } // namespace WebKit 129 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebCore/dom/WebKitMutationObserver.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698