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

Side by Side Diff: sky/engine/bindings/core/v8/WindowProxy.h

Issue 726133002: Use root-relative V8 includes (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/bindings/core/v8/V8ValueCache.h ('k') | sky/engine/bindings/core/v8/WindowProxy.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef WindowProxy_h 31 #ifndef WindowProxy_h
32 #define WindowProxy_h 32 #define WindowProxy_h
33 33
34 #include "bindings/core/v8/DOMWrapperWorld.h" 34 #include "bindings/core/v8/DOMWrapperWorld.h"
35 #include "bindings/core/v8/ScopedPersistent.h" 35 #include "bindings/core/v8/ScopedPersistent.h"
36 #include "bindings/core/v8/ScriptState.h" 36 #include "bindings/core/v8/ScriptState.h"
37 #include "bindings/core/v8/WrapperTypeInfo.h" 37 #include "bindings/core/v8/WrapperTypeInfo.h"
38 #include "v8/include/v8.h"
38 #include "wtf/Forward.h" 39 #include "wtf/Forward.h"
39 #include "wtf/HashMap.h" 40 #include "wtf/HashMap.h"
40 #include "wtf/PassRefPtr.h" 41 #include "wtf/PassRefPtr.h"
41 #include "wtf/RefCounted.h" 42 #include "wtf/RefCounted.h"
42 #include "wtf/RefPtr.h" 43 #include "wtf/RefPtr.h"
43 #include "wtf/text/AtomicString.h" 44 #include "wtf/text/AtomicString.h"
44 #include <v8.h>
45 45
46 namespace blink { 46 namespace blink {
47 47
48 class LocalDOMWindow; 48 class LocalDOMWindow;
49 class LocalFrame; 49 class LocalFrame;
50 class HTMLDocument; 50 class HTMLDocument;
51 51
52 // WindowProxy represents all the per-global object state for a LocalFrame that 52 // WindowProxy represents all the per-global object state for a LocalFrame that
53 // persist between navigations. 53 // persist between navigations.
54 class WindowProxy { 54 class WindowProxy {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 v8::Isolate* m_isolate; 98 v8::Isolate* m_isolate;
99 RefPtr<ScriptState> m_scriptState; 99 RefPtr<ScriptState> m_scriptState;
100 RefPtr<DOMWrapperWorld> m_world; 100 RefPtr<DOMWrapperWorld> m_world;
101 ScopedPersistent<v8::Object> m_global; 101 ScopedPersistent<v8::Object> m_global;
102 ScopedPersistent<v8::Object> m_document; 102 ScopedPersistent<v8::Object> m_document;
103 }; 103 };
104 104
105 } // namespace blink 105 } // namespace blink
106 106
107 #endif // WindowProxy_h 107 #endif // WindowProxy_h
OLDNEW
« no previous file with comments | « sky/engine/bindings/core/v8/V8ValueCache.h ('k') | sky/engine/bindings/core/v8/WindowProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698