OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:token_ids
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/extensions/api/enterprise_platform_keys/
enterprise_platform_keys_api.h
102
// |
token_ids
| will be NULL and instead |error_message| be set.
103
void OnGotTokens(scoped_ptr<std::vector<std::string> >
token_ids
,
enterprise_platform_keys_api.cc
299
std::vector<std::string>
token_ids
;
local
309
token_ids
.push_back(token_id);
312
Respond(ArgumentList(api_epki::GetTokens::Results::Create(
token_ids
)));
/external/chromium_org/chrome/browser/chromeos/platform_keys/
platform_keys.h
127
// If the list of available tokens could be successfully retrieved, |
token_ids
|
128
// will contain the token ids. If an error occurs, |
token_ids
| will be NULL and
130
typedef base::Callback<void(scoped_ptr<std::vector<std::string> >
token_ids
,
platform_keys_nss.cc
276
scoped_ptr<std::vector<std::string> >
token_ids
,
279
from, base::Bind(callback_, base::Passed(&
token_ids
), error_message));
543
scoped_ptr<std::vector<std::string> >
token_ids
(new std::vector<std::string>);
546
token_ids
->push_back(kTokenIdUser);
548
token_ids
->push_back(kTokenIdSystem);
550
state->CallBack(FROM_HERE,
token_ids
.Pass(), std::string() /* no error */);
Completed in 166 milliseconds