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

Side by Side Diff: Source/bindings/v8/V8Initializer.cpp

Issue 208263004: Move TraceEvent.h from platform/ to wtf/ Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 28 matching lines...) Expand all
39 #include "bindings/v8/V8ErrorHandler.h" 39 #include "bindings/v8/V8ErrorHandler.h"
40 #include "bindings/v8/V8GCController.h" 40 #include "bindings/v8/V8GCController.h"
41 #include "bindings/v8/V8PerContextData.h" 41 #include "bindings/v8/V8PerContextData.h"
42 #include "core/dom/Document.h" 42 #include "core/dom/Document.h"
43 #include "core/dom/ExceptionCode.h" 43 #include "core/dom/ExceptionCode.h"
44 #include "core/frame/ConsoleTypes.h" 44 #include "core/frame/ConsoleTypes.h"
45 #include "core/frame/DOMWindow.h" 45 #include "core/frame/DOMWindow.h"
46 #include "core/frame/LocalFrame.h" 46 #include "core/frame/LocalFrame.h"
47 #include "core/frame/csp/ContentSecurityPolicy.h" 47 #include "core/frame/csp/ContentSecurityPolicy.h"
48 #include "core/inspector/ScriptCallStack.h" 48 #include "core/inspector/ScriptCallStack.h"
49 #include "platform/TraceEvent.h"
50 #include "public/platform/Platform.h" 49 #include "public/platform/Platform.h"
51 #include "wtf/RefPtr.h" 50 #include "wtf/RefPtr.h"
51 #include "wtf/TraceEvent.h"
52 #include "wtf/text/WTFString.h" 52 #include "wtf/text/WTFString.h"
53 #include <v8-debug.h> 53 #include <v8-debug.h>
54 54
55 namespace WebCore { 55 namespace WebCore {
56 56
57 static LocalFrame* findFrame(v8::Local<v8::Object> host, v8::Local<v8::Value> da ta, v8::Isolate* isolate) 57 static LocalFrame* findFrame(v8::Local<v8::Object> host, v8::Local<v8::Value> da ta, v8::Isolate* isolate)
58 { 58 {
59 const WrapperTypeInfo* type = WrapperTypeInfo::unwrap(data); 59 const WrapperTypeInfo* type = WrapperTypeInfo::unwrap(data);
60 60
61 if (V8Window::wrapperTypeInfo.equals(type)) { 61 if (V8Window::wrapperTypeInfo.equals(type)) {
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 v8::V8::AddMessageListener(messageHandlerInWorker); 238 v8::V8::AddMessageListener(messageHandlerInWorker);
239 v8::V8::SetFatalErrorHandler(reportFatalErrorInWorker); 239 v8::V8::SetFatalErrorHandler(reportFatalErrorInWorker);
240 240
241 v8::ResourceConstraints resourceConstraints; 241 v8::ResourceConstraints resourceConstraints;
242 uint32_t here; 242 uint32_t here;
243 resourceConstraints.set_stack_limit(&here - kWorkerMaxStackSize / sizeof(uin t32_t*)); 243 resourceConstraints.set_stack_limit(&here - kWorkerMaxStackSize / sizeof(uin t32_t*));
244 v8::SetResourceConstraints(isolate, &resourceConstraints); 244 v8::SetResourceConstraints(isolate, &resourceConstraints);
245 } 245 }
246 246
247 } // namespace WebCore 247 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698