| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Ericsson AB. All rights reserved. | 3 * Copyright (C) 2012 Ericsson AB. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "bindings/core/v8/V8StringResource.h" | 43 #include "bindings/core/v8/V8StringResource.h" |
| 44 #include "bindings/core/v8/V8ThrowException.h" | 44 #include "bindings/core/v8/V8ThrowException.h" |
| 45 #include "bindings/core/v8/V8ValueCache.h" | 45 #include "bindings/core/v8/V8ValueCache.h" |
| 46 #include "platform/heap/Handle.h" | 46 #include "platform/heap/Handle.h" |
| 47 #include "wtf/text/AtomicString.h" | 47 #include "wtf/text/AtomicString.h" |
| 48 #include <v8.h> | 48 #include <v8.h> |
| 49 | 49 |
| 50 namespace blink { | 50 namespace blink { |
| 51 | 51 |
| 52 class DOMWindow; | 52 class DOMWindow; |
| 53 class Document; | |
| 54 class EventListener; | 53 class EventListener; |
| 55 class ExecutionContext; | 54 class ExecutionContext; |
| 56 class ExceptionState; | 55 class ExceptionState; |
| 57 class Frame; | 56 class Frame; |
| 58 class LocalDOMWindow; | 57 class LocalDOMWindow; |
| 59 class LocalFrame; | 58 class LocalFrame; |
| 60 class NodeFilter; | 59 class NodeFilter; |
| 61 class XPathNSResolver; | 60 class XPathNSResolver; |
| 62 | 61 |
| 63 namespace TraceEvent { | 62 namespace TraceEvent { |
| (...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 955 | 954 |
| 956 private: | 955 private: |
| 957 v8::TryCatch& m_block; | 956 v8::TryCatch& m_block; |
| 958 }; | 957 }; |
| 959 | 958 |
| 960 typedef void (*InstallTemplateFunction)(v8::Handle<v8::FunctionTemplate>, v8::Is
olate*); | 959 typedef void (*InstallTemplateFunction)(v8::Handle<v8::FunctionTemplate>, v8::Is
olate*); |
| 961 | 960 |
| 962 } // namespace blink | 961 } // namespace blink |
| 963 | 962 |
| 964 #endif // V8Binding_h | 963 #endif // V8Binding_h |
| OLD | NEW |