HomeSort by relevance Sort by last modified time
    Searched refs:StringToCookiePriority (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/net/cookies/
cookie_constants_unittest.cc 17 EXPECT_EQ(COOKIE_PRIORITY_LOW, StringToCookiePriority("low"));
18 EXPECT_EQ(COOKIE_PRIORITY_MEDIUM, StringToCookiePriority("medium"));
19 EXPECT_EQ(COOKIE_PRIORITY_HIGH, StringToCookiePriority("high"));
21 // Case Insensitivity of StringToCookiePriority().
22 EXPECT_EQ(COOKIE_PRIORITY_LOW, StringToCookiePriority("LOW"));
23 EXPECT_EQ(COOKIE_PRIORITY_MEDIUM, StringToCookiePriority("Medium"));
24 EXPECT_EQ(COOKIE_PRIORITY_HIGH, StringToCookiePriority("hiGH"));
36 EXPECT_EQ(COOKIE_PRIORITY_DEFAULT, StringToCookiePriority(bad_tokens[i]));
cookie_constants.h 26 NET_EXPORT CookiePriority StringToCookiePriority(const std::string& priority);
cookie_constants.cc 32 NET_EXPORT CookiePriority StringToCookiePriority(const std::string& priority) {
parsed_cookie.cc 193 StringToCookiePriority(pairs_[priority_index_].second);
  /external/chromium_org/chrome/browser/automation/
automation_util.cc 434 priority = net::StringToCookiePriority(priority_string);

Completed in 1961 milliseconds