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

  /external/chromium_org/chrome/browser/extensions/api/cookies/
cookies_api.cc 163 std::string* store_id,
165 DCHECK((context || store_id->empty()));
167 if (!store_id->empty()) {
169 *store_id, profile(), include_incognito());
172 keys::kInvalidStoreIdError, *store_id);
185 *store_id = cookies_helpers::GetStoreIdFromProfile(store_profile);
209 std::string store_id =
210 parsed_args_->details.store_id.get() ? *parsed_args_->details.store_id
213 if (!ParseStoreContext(&store_id, &store_context)
283 std::string store_id = local
    [all...]
cookies_helpers.h 46 Profile* ChooseProfileFromStoreId(const std::string& store_id,
57 const std::string& store_id);
cookies_helpers.cc 45 Profile* ChooseProfileFromStoreId(const std::string& store_id,
52 if (store_id == kOriginalProfileStoreId && allow_original)
54 if (store_id == kOffTheRecordProfileStoreId && allow_incognito)
67 const std::string& store_id) {
87 cookie->store_id = store_id;
144 CreateCookie(*it, *details->store_id).release()));
cookies_api.h 81 // Gets the store identified by |store_id| and returns it in |context|.
82 // If |store_id| contains an empty string, retrieves the current execution
83 // context's store. In this case, |store_id| is populated with the found
84 // store, and |context| can be NULL if the caller only wants |store_id|.
85 bool ParseStoreContext(std::string* store_id,
cookies_unittest.cc 131 EXPECT_EQ("some cookie store", cookie1->store_id);
  /external/chromium/chrome/browser/extensions/
extension_cookies_helpers.h 29 Profile* ChooseProfileFromStoreId(const std::string& store_id,
41 const std::string& store_id);
67 const std::string& store_id,
extension_cookies_helpers.cc 28 Profile* ChooseProfileFromStoreId(const std::string& store_id,
35 if (store_id == kOriginalProfileStoreId && allow_original)
37 if (store_id == kOffTheRecordProfileStoreId && allow_incognito)
50 const std::string& store_id) {
66 result->SetString(keys::kStoreIdKey, store_id);
104 const std::string& store_id,
118 match_list->Append(CreateCookieValue(*it, store_id));
extension_cookies_api.h 89 // At least one of the output parameters store and store_id should be
93 std::string* store_id);
extension_cookies_api.cc 138 std::string* store_id) {
139 DCHECK(details && (context || store_id));
170 if (store_id)
171 *store_id = extension_cookies_helpers::GetStoreIdFromProfile(store_profile);

Completed in 741 milliseconds