Bug 677079 - Part e: Move js_GetSCOffset to jsfriendapi.h; r=luke

This commit is contained in:
Ms2ger 2012-01-15 09:13:08 +01:00
Родитель dc850b4531
Коммит dc4d4e78ee
3 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -41,7 +41,8 @@
#include "nsIJSContextStack.h"
#include "jsclone.h"
#include "jscntxt.h" // structuredCloneCallbacks
#include "jsfriendapi.h"
#include "mozilla/dom/StructuredCloneTags.h"
#include "mozilla/storage.h"
#include "nsCharSeparatedTokenizer.h"

Просмотреть файл

@ -46,9 +46,6 @@
#include "js/HashTable.h"
#include "js/Vector.h"
JS_FRIEND_API(uint64_t)
js_GetSCOffset(JSStructuredCloneWriter* writer);
namespace js {
bool

Просмотреть файл

@ -527,4 +527,9 @@ typedef enum JSErrNum {
extern JS_FRIEND_API(const JSErrorFormatString *)
js_GetErrorMessage(void *userRef, const char *locale, const uintN errorNumber);
/* Implemented in jsclone.cpp. */
extern JS_FRIEND_API(uint64_t)
js_GetSCOffset(JSStructuredCloneWriter* writer);
#endif /* jsfriendapi_h___ */