OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PromoCounter
(Results
1 - 12
of
12
) sorted by null
/external/chromium/chrome/browser/instant/
promo_counter_unittest.cc
14
PromoCounter
::RegisterUserPrefs(profile.GetPrefs(), "test");
17
PromoCounter
counter(&profile, "test", "test", 2, 2);
26
PromoCounter
::RegisterUserPrefs(profile.GetPrefs(), "test");
30
PromoCounter
counter(&profile, "test", "test", 2, 2);
35
PromoCounter
counter(&profile, "test", "test", 2, 2);
40
PromoCounter
counter(&profile, "test", "test", 2, 2);
48
PromoCounter
::RegisterUserPrefs(profile.GetPrefs(), "test");
52
PromoCounter
counter(&profile, "test", "test", 2, 2);
59
PromoCounter
counter(&profile, "test", "test", 2, 2);
67
PromoCounter
::RegisterUserPrefs(profile.GetPrefs(), "test")
[
all
...]
promo_counter.h
17
//
PromoCounter
is used to track whether a promo should be shown. The promo is
19
class
PromoCounter
{
21
// Creates a new
PromoCounter
. |pref_key| is used to store prefs related to
26
PromoCounter
(Profile* profile,
31
~
PromoCounter
();
33
// Registers the preferences used by
PromoCounter
.
75
DISALLOW_COPY_AND_ASSIGN(
PromoCounter
);
promo_counter.cc
22
PromoCounter
::
PromoCounter
(Profile* profile,
36
PromoCounter
::~
PromoCounter
() {
40
void
PromoCounter
::RegisterUserPrefs(PrefService* prefs,
47
bool
PromoCounter
::ShouldShow(base::Time current_time) {
59
void
PromoCounter
::Hide() {
69
void
PromoCounter
::Init(base::Time current_time) {
99
void
PromoCounter
::MaxSessionsEncountered(base::Time current_time) {
108
void
PromoCounter
::MaxTimeLapsed(base::Time current_time)
[
all
...]
instant_confirm_dialog.cc
28
PromoCounter
* promo_counter = profile->GetInstantPromoCounter();
instant_controller.cc
64
PromoCounter
::RegisterUserPrefs(prefs, prefs::kInstantPromo);
96
PromoCounter
* promo_counter = profile->GetInstantPromoCounter();
/external/chromium/android/autofill/
profile_android.h
98
class
PromoCounter
;
216
virtual
PromoCounter
* GetInstantPromoCounter() { NOTREACHED(); return NULL; }
/external/chromium/chrome/browser/profiles/
profile.h
97
class
PromoCounter
;
530
// Returns the
PromoCounter
for Instant, or NULL if not applicable.
531
virtual
PromoCounter
* GetInstantPromoCounter() = 0;
profile_impl.h
133
virtual
PromoCounter
* GetInstantPromoCounter();
282
scoped_ptr<
PromoCounter
> instant_promo_counter_;
profile.cc
657
virtual
PromoCounter
* GetInstantPromoCounter() {
profile_impl.cc
[
all
...]
/external/chromium_org/chrome/browser/profiles/
profile.h
27
class
PromoCounter
;
/external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc
309
PromoCounter
* counter = model_->profile()->GetInstantPromoCounter();
676
PromoCounter
* counter = model_->profile()->GetInstantPromoCounter();
Completed in 120 milliseconds