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

Unified Diff: Source/bindings/core/dart/DartApplicationLoader.cpp

Issue 1667603002: Fix compile errors from merge of all dartium changes over the past 4 months. (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/2454_1
Patch Set: Created 4 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
« no previous file with comments | « no previous file | Source/bindings/core/dart/DartController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/dart/DartApplicationLoader.cpp
diff --git a/Source/bindings/core/dart/DartApplicationLoader.cpp b/Source/bindings/core/dart/DartApplicationLoader.cpp
index 7f7d3ad5608b16095b3e7765df991fe3555b1f21..51104cf3f1fcaeaab178bf07727f820ff6c6010b 100644
--- a/Source/bindings/core/dart/DartApplicationLoader.cpp
+++ b/Source/bindings/core/dart/DartApplicationLoader.cpp
@@ -390,8 +390,6 @@ void DartApplicationLoader::callEntryPoint()
{
RELEASE_ASSERT(m_state == Ready);
- Timeline timeline(m_originDocument->frame(), String("callEntryPoint@") + m_scriptUrlString);
-
if (m_domEnabled) {
Vector<InteropPatchFile> patches;
uint8_t* buffer;
@@ -424,7 +422,8 @@ void DartApplicationLoader::callEntryPoint()
Dart_ExitIsolate();
char* err = 0;
- Dart_Isolate ALLOW_UNUSED isolate = DartController::createIsolate("js_interop_codegen_isolate", NULL, NULL, NULL, NULL, false, &err);
+ Dart_Isolate isolate = DartController::createIsolate("js_interop_codegen_isolate", NULL, NULL, NULL, NULL, false, &err);
+ ALLOW_UNUSED_LOCAL(isolate);
{
ASSERT(!err);
ASSERT(Dart_CurrentIsolate() == isolate);
@@ -471,7 +470,6 @@ void DartApplicationLoader::callEntryPoint()
logObservatoryInformation();
{
- Timeline timeline(m_originDocument->frame(), String("notifyDebugServer@") + m_scriptUrlString);
DartScriptDebugServer::shared().registerIsolate(Dart_CurrentIsolate(), m_originDocument->page());
DartScriptDebugServer::shared().isolateLoaded();
}
« no previous file with comments | « no previous file | Source/bindings/core/dart/DartController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698