Home
last modified time | relevance | path

Searched refs:cookieStr (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/mac/
DCookieJar.mm117 void setCookies(Document* document, const KURL& url, const String& cookieStr)
123 if (cookieStr.isEmpty())
128 String cookieString = cookieStr.contains('=') ? cookieStr : cookieStr + "=";
/external/webkit/Source/WebCore/plugins/
DPluginView.cpp1510 const CString cookieStr = cookies(frame->document(), u).utf8(); in getValueForURL() local
1511 if (!cookieStr.isNull()) { in getValueForURL()
1512 const int size = cookieStr.length(); in getValueForURL()
1516 memcpy(*value, cookieStr.data(), size+1); in getValueForURL()
1569 const String cookieStr = String::fromUTF8(value, len); in setValueForURL() local
1571 if (frame && !cookieStr.isEmpty()) in setValueForURL()
1572 setCookies(frame->document(), u, cookieStr); in setValueForURL()