| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2008, 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 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 27 matching lines...) Expand all Loading... |
| 38 #include "sky/engine/wtf/RefCounted.h" | 38 #include "sky/engine/wtf/RefCounted.h" |
| 39 #include "sky/engine/wtf/Vector.h" | 39 #include "sky/engine/wtf/Vector.h" |
| 40 #include "sky/engine/wtf/text/TextPosition.h" | 40 #include "sky/engine/wtf/text/TextPosition.h" |
| 41 #include "v8/include/v8.h" | 41 #include "v8/include/v8.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class DOMWrapperWorld; | 45 class DOMWrapperWorld; |
| 46 class ExecutionContext; | 46 class ExecutionContext; |
| 47 class Event; | 47 class Event; |
| 48 class HTMLDocument; | |
| 49 class KURL; | 48 class KURL; |
| 50 class LocalFrame; | 49 class LocalFrame; |
| 51 class AbstractModule; | 50 class AbstractModule; |
| 52 class ScriptState; | 51 class ScriptState; |
| 53 class ScriptSourceCode; | 52 class ScriptSourceCode; |
| 54 class WindowProxy; | 53 class WindowProxy; |
| 55 class Widget; | 54 class Widget; |
| 56 | 55 |
| 57 typedef WTF::Vector<v8::Extension*> V8Extensions; | 56 typedef WTF::Vector<v8::Extension*> V8Extensions; |
| 58 | 57 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 const String* m_sourceURL; | 103 const String* m_sourceURL; |
| 105 v8::Isolate* m_isolate; | 104 v8::Isolate* m_isolate; |
| 106 | 105 |
| 107 OwnPtr<WindowProxy> m_windowProxy; | 106 OwnPtr<WindowProxy> m_windowProxy; |
| 108 IsolatedWorldMap m_isolatedWorlds; | 107 IsolatedWorldMap m_isolatedWorlds; |
| 109 }; | 108 }; |
| 110 | 109 |
| 111 } // namespace blink | 110 } // namespace blink |
| 112 | 111 |
| 113 #endif // SKY_ENGINE_BINDINGS_CORE_V8_SCRIPTCONTROLLER_H_ | 112 #endif // SKY_ENGINE_BINDINGS_CORE_V8_SCRIPTCONTROLLER_H_ |
| OLD | NEW |