OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetDeviceToken
(Results
1 - 10
of
10
) sorted by null
/external/chromium/chrome/browser/policy/
cloud_policy_identity_strategy.h
29
// changed. The token can be queried by calling
GetDeviceToken
().
45
virtual std::string
GetDeviceToken
() = 0;
75
// and return the new token in
GetDeviceToken
() calls.
device_token_fetcher_unittest.cc
79
EXPECT_EQ("", fetcher.
GetDeviceToken
());
85
std::string token = fetcher.
GetDeviceToken
();
97
std::string token2 = fetcher.
GetDeviceToken
();
118
EXPECT_NE("", fetcher.
GetDeviceToken
());
136
EXPECT_EQ("", fetcher.
GetDeviceToken
());
device_policy_identity_strategy.cc
43
std::string DevicePolicyIdentityStrategy::
GetDeviceToken
() {
device_policy_identity_strategy.h
42
virtual std::string
GetDeviceToken
() OVERRIDE;
user_policy_identity_strategy.h
34
virtual std::string
GetDeviceToken
() OVERRIDE;
cloud_policy_controller.cc
159
identity_strategy_->OnDeviceTokenAvailable(token_fetcher_->
GetDeviceToken
());
163
if (identity_strategy_->
GetDeviceToken
().empty())
224
if (!identity_strategy_->
GetDeviceToken
().empty())
247
DCHECK(!identity_strategy_->
GetDeviceToken
().empty());
262
backend_->ProcessPolicyRequest(identity_strategy_->
GetDeviceToken
(),
device_token_fetcher.h
65
virtual const std::string&
GetDeviceToken
();
cloud_policy_controller_unittest.cc
39
MOCK_METHOD0(
GetDeviceToken
, std::string());
65
MOCK_METHOD0(
GetDeviceToken
, const std::string&());
134
EXPECT_CALL(identity_strategy_,
GetDeviceToken
()).WillRepeatedly(
device_token_fetcher.cc
104
const std::string& DeviceTokenFetcher::
GetDeviceToken
() {
user_policy_identity_strategy.cc
160
std::string UserPolicyIdentityStrategy::
GetDeviceToken
() {
Completed in 30 milliseconds