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

Side by Side Diff: Source/bindings/tests/results/V8TestInterfacePython.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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "bindings/tests/idls/TestPartialInterfacePython.h" 43 #include "bindings/tests/idls/TestPartialInterfacePython.h"
44 #include "bindings/tests/idls/TestPartialInterfacePythonImplementation.h" 44 #include "bindings/tests/idls/TestPartialInterfacePythonImplementation.h"
45 #include "bindings/v8/ExceptionState.h" 45 #include "bindings/v8/ExceptionState.h"
46 #include "bindings/v8/V8AbstractEventListener.h" 46 #include "bindings/v8/V8AbstractEventListener.h"
47 #include "bindings/v8/V8DOMConfiguration.h" 47 #include "bindings/v8/V8DOMConfiguration.h"
48 #include "bindings/v8/V8EventListenerList.h" 48 #include "bindings/v8/V8EventListenerList.h"
49 #include "bindings/v8/V8HiddenValue.h" 49 #include "bindings/v8/V8HiddenValue.h"
50 #include "bindings/v8/V8ObjectConstructor.h" 50 #include "bindings/v8/V8ObjectConstructor.h"
51 #include "core/dom/ContextFeatures.h" 51 #include "core/dom/ContextFeatures.h"
52 #include "core/dom/Document.h" 52 #include "core/dom/Document.h"
53 #include "platform/TraceEvent.h"
54 #include "wtf/GetPtr.h" 53 #include "wtf/GetPtr.h"
55 #include "wtf/RefPtr.h" 54 #include "wtf/RefPtr.h"
55 #include "wtf/TraceEvent.h"
56 56
57 namespace WebCore { 57 namespace WebCore {
58 58
59 static void initializeScriptWrappableForInterface(TestInterfacePythonImplementat ion* object) 59 static void initializeScriptWrappableForInterface(TestInterfacePythonImplementat ion* object)
60 { 60 {
61 if (ScriptWrappable::wrapperCanBeStoredInObject(object)) 61 if (ScriptWrappable::wrapperCanBeStoredInObject(object))
62 ScriptWrappable::setTypeInfoInObject(object, &V8TestInterfacePython::wra pperTypeInfo); 62 ScriptWrappable::setTypeInfoInObject(object, &V8TestInterfacePython::wra pperTypeInfo);
63 else 63 else
64 ASSERT_NOT_REACHED(); 64 ASSERT_NOT_REACHED();
65 } 65 }
(...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 } 1059 }
1060 1060
1061 template<> 1061 template<>
1062 v8::Handle<v8::Value> toV8NoInline(TestInterfacePythonImplementation* impl, v8:: Handle<v8::Object> creationContext, v8::Isolate* isolate) 1062 v8::Handle<v8::Value> toV8NoInline(TestInterfacePythonImplementation* impl, v8:: Handle<v8::Object> creationContext, v8::Isolate* isolate)
1063 { 1063 {
1064 return toV8(impl, creationContext, isolate); 1064 return toV8(impl, creationContext, isolate);
1065 } 1065 }
1066 1066
1067 } // namespace WebCore 1067 } // namespace WebCore
1068 #endif // ENABLE(CONDITION) 1068 #endif // ENABLE(CONDITION)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698