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

Side by Side Diff: Source/WebCore/bindings/v8/V8PerIsolateData.h

Issue 11337028: Merge 132922 - Remove ensureAuxiliaryContext (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1312/
Patch Set: Created 8 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
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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 IntegerCache* integerCache() { return m_integerCache.get(); } 79 IntegerCache* integerCache() { return m_integerCache.get(); }
80 80
81 v8::Persistent<v8::Value> ensureLiveRoot(); 81 v8::Persistent<v8::Value> ensureLiveRoot();
82 82
83 #if ENABLE(INSPECTOR) 83 #if ENABLE(INSPECTOR)
84 void visitExternalStrings(ExternalStringVisitor*); 84 void visitExternalStrings(ExternalStringVisitor*);
85 #endif 85 #endif
86 DOMDataList& allStores() { return m_domDataList; } 86 DOMDataList& allStores() { return m_domDataList; }
87 87
88 V8HiddenPropertyName* hiddenPropertyName() { return m_hiddenPropertyName.get (); } 88 V8HiddenPropertyName* hiddenPropertyName() { return m_hiddenPropertyName.get (); }
89 v8::Handle<v8::Context> ensureAuxiliaryContext();
90 89
91 void registerDOMDataStore(DOMDataStore* domDataStore) 90 void registerDOMDataStore(DOMDataStore* domDataStore)
92 { 91 {
93 ASSERT(m_domDataList.find(domDataStore) == notFound); 92 ASSERT(m_domDataList.find(domDataStore) == notFound);
94 m_domDataList.append(domDataStore); 93 m_domDataList.append(domDataStore);
95 } 94 }
96 95
97 void unregisterDOMDataStore(DOMDataStore* domDataStore) 96 void unregisterDOMDataStore(DOMDataStore* domDataStore)
98 { 97 {
99 ASSERT(m_domDataList.find(domDataStore) != notFound); 98 ASSERT(m_domDataList.find(domDataStore) != notFound);
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 #ifndef NDEBUG 155 #ifndef NDEBUG
157 int m_internalScriptRecursionLevel; 156 int m_internalScriptRecursionLevel;
158 #endif 157 #endif
159 OwnPtr<GCEventData> m_gcEventData; 158 OwnPtr<GCEventData> m_gcEventData;
160 bool m_shouldCollectGarbageSoon; 159 bool m_shouldCollectGarbageSoon;
161 }; 160 };
162 161
163 } // namespace WebCore 162 } // namespace WebCore
164 163
165 #endif // V8PerIsolateData_h 164 #endif // V8PerIsolateData_h
OLDNEW
« no previous file with comments | « Source/WebCore/bindings/v8/IDBBindingUtilities.cpp ('k') | Source/WebCore/bindings/v8/V8PerIsolateData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698