Commit 59ec70ce authored by yangguo@chromium.org's avatar yangguo@chromium.org

Fix windows build wrt symbol export.

R=dcarney@chromium.org
BUG=

Review URL: https://chromiumcodereview.appspot.com/11888022

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13381 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 90ec6115
......@@ -1089,7 +1089,7 @@ class V8EXPORT String : public Primitive {
/**
* Returns whether this string contains only one byte data.
*/
V8EXPORT bool IsOneByte() const;
bool IsOneByte() const;
/**
* Write the contents of the string to an external buffer.
......@@ -1134,7 +1134,7 @@ class V8EXPORT String : public Primitive {
int length = -1,
int options = NO_OPTIONS) const;
// One byte characters.
V8EXPORT int WriteOneByte(uint8_t* buffer,
int WriteOneByte(uint8_t* buffer,
int start = 0,
int length = -1,
int options = NO_OPTIONS) const;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment