OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GAIAInfoUpdateService
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/profiles/
gaia_info_update_service.h
22
class
GAIAInfoUpdateService
: public ProfileDownloaderDelegate,
25
explicit
GAIAInfoUpdateService
(Profile* profile);
26
virtual ~
GAIAInfoUpdateService
();
54
base::OneShotTimer<
GAIAInfoUpdateService
> timer_;
56
DISALLOW_COPY_AND_ASSIGN(
GAIAInfoUpdateService
);
gaia_info_update_service.cc
32
GAIAInfoUpdateService
::
GAIAInfoUpdateService
(Profile* profile)
36
base::Bind(&
GAIAInfoUpdateService
::OnUsernameChanged,
44
GAIAInfoUpdateService
::~
GAIAInfoUpdateService
() {
47
void
GAIAInfoUpdateService
::Update() {
61
bool
GAIAInfoUpdateService
::ShouldUseGAIAProfileInfo(Profile* profile) {
80
bool
GAIAInfoUpdateService
::NeedsProfilePicture() const {
84
int
GAIAInfoUpdateService
::GetDesiredImageSideLength() const {
88
Profile*
GAIAInfoUpdateService
::GetBrowserProfile()
[
all
...]
gaia_info_update_service_factory.cc
15
"
GAIAInfoUpdateService
",
22
GAIAInfoUpdateService
* GAIAInfoUpdateServiceFactory::GetForProfile(
24
return static_cast<
GAIAInfoUpdateService
*>(
37
if (!
GAIAInfoUpdateService
::ShouldUseGAIAProfileInfo(profile))
39
return new
GAIAInfoUpdateService
(profile);
gaia_info_update_service_factory.h
11
class
GAIAInfoUpdateService
;
20
// the associated
GAIAInfoUpdateService
.
23
// Returns the instance of
GAIAInfoUpdateService
associated with this profile
25
//
GAIAInfoUpdateService
(for example, if |profile| is incognito).
26
static
GAIAInfoUpdateService
* GetForProfile(Profile* profile);
gaia_info_update_service_unittest.cc
42
class GAIAInfoUpdateServiceMock : public
GAIAInfoUpdateService
{
45
:
GAIAInfoUpdateService
(profile) {
72
GAIAInfoUpdateService
service(profile());
107
GAIAInfoUpdateService
service(profile());
132
GAIAInfoUpdateService
service(profile());
159
EXPECT_FALSE(
GAIAInfoUpdateService
::ShouldUseGAIAProfileInfo(profile()));
164
GAIAInfoUpdateService
service(profile());
184
GAIAInfoUpdateService
service(profile());
Completed in 619 milliseconds