Changeset 35853 in webkit for trunk/JavaScriptCore/kjs/JSGlobalData.h
- Timestamp:
- Aug 20, 2008, 12:23:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalData.h
r35511 r35853 55 55 class JSGlobalData : public RefCounted<JSGlobalData> { 56 56 public: 57 static bool sharedInstanceExists(); 58 static JSGlobalData& sharedInstance(); 59 57 60 static PassRefPtr<JSGlobalData> create(); 58 61 ~JSGlobalData(); … … 83 86 JSGlobalObject* head; 84 87 88 bool isSharedInstance; 89 85 90 private: 86 JSGlobalData(); 91 JSGlobalData(bool isShared = false); 92 93 static JSGlobalData*& sharedInstanceInternal(); 87 94 }; 88 95
Note:
See TracChangeset
for help on using the changeset viewer.