| OLD | NEW |
| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include "V8TestInterface.h" | 46 #include "V8TestInterface.h" |
| 47 #include "V8TestNode.h" | 47 #include "V8TestNode.h" |
| 48 #include "V8TestObjectectA.h" | 48 #include "V8TestObjectectA.h" |
| 49 #include "V8TestObjectectB.h" | 49 #include "V8TestObjectectB.h" |
| 50 #include "V8TestObjectectC.h" | 50 #include "V8TestObjectectC.h" |
| 51 #include "V8TestSubObj.h" | 51 #include "V8TestSubObj.h" |
| 52 #include "bindings/v8/BindingSecurity.h" | 52 #include "bindings/v8/BindingSecurity.h" |
| 53 #include "bindings/v8/Dictionary.h" | 53 #include "bindings/v8/Dictionary.h" |
| 54 #include "bindings/v8/ExceptionMessages.h" | 54 #include "bindings/v8/ExceptionMessages.h" |
| 55 #include "bindings/v8/ExceptionState.h" | 55 #include "bindings/v8/ExceptionState.h" |
| 56 #include "bindings/v8/ScriptController.h" | |
| 57 #include "bindings/v8/ScriptState.h" | 56 #include "bindings/v8/ScriptState.h" |
| 58 #include "bindings/v8/ScriptValue.h" | 57 #include "bindings/v8/ScriptValue.h" |
| 59 #include "bindings/v8/SerializedScriptValue.h" | 58 #include "bindings/v8/SerializedScriptValue.h" |
| 60 #include "bindings/v8/V8AbstractEventListener.h" | 59 #include "bindings/v8/V8AbstractEventListener.h" |
| 61 #include "bindings/v8/V8Binding.h" | 60 #include "bindings/v8/V8Binding.h" |
| 62 #include "bindings/v8/V8DOMActivityLogger.h" | 61 #include "bindings/v8/V8DOMActivityLogger.h" |
| 63 #include "bindings/v8/V8DOMConfiguration.h" | 62 #include "bindings/v8/V8DOMConfiguration.h" |
| 64 #include "bindings/v8/V8DOMWrapper.h" | 63 #include "bindings/v8/V8DOMWrapper.h" |
| 65 #include "bindings/v8/V8EventListenerList.h" | 64 #include "bindings/v8/V8EventListenerList.h" |
| 66 #include "bindings/v8/V8HiddenPropertyName.h" | 65 #include "bindings/v8/V8HiddenPropertyName.h" |
| (...skipping 5340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5407 fromInternalPointer(object)->deref(); | 5406 fromInternalPointer(object)->deref(); |
| 5408 } | 5407 } |
| 5409 | 5408 |
| 5410 template<> | 5409 template<> |
| 5411 v8::Handle<v8::Value> toV8NoInline(TestObj* impl, v8::Handle<v8::Object> creatio
nContext, v8::Isolate* isolate) | 5410 v8::Handle<v8::Value> toV8NoInline(TestObj* impl, v8::Handle<v8::Object> creatio
nContext, v8::Isolate* isolate) |
| 5412 { | 5411 { |
| 5413 return toV8(impl, creationContext, isolate); | 5412 return toV8(impl, creationContext, isolate); |
| 5414 } | 5413 } |
| 5415 | 5414 |
| 5416 } // namespace WebCore | 5415 } // namespace WebCore |
| OLD | NEW |