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

  /external/chromium_org/components/suggestions/
suggestions_store.cc 35 std::string suggestions_data; local
36 if (!base::Base64Decode(base64_suggestions_data, &suggestions_data) ||
37 !suggestions->ParseFromString(suggestions_data)) {
77 std::string suggestions_data; local
78 if (!suggestions.SerializeToString(&suggestions_data)) return false;
81 base::Base64Encode(suggestions_data, &base64_suggestions_data);
suggestions_service.cc 334 std::string suggestions_data; local
335 bool success = request->GetResponseAsString(&suggestions_data);
341 if (suggestions_data.empty()) {
344 } else if (suggestions.ParseFromString(suggestions_data)) {

Completed in 49 milliseconds