OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SuggestionsCombiner
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/chrome/browser/ui/webui/ntp/
suggestions_source.h
11
class
SuggestionsCombiner
;
18
// combined by the
SuggestionsCombiner
.
27
friend class
SuggestionsCombiner
;
54
virtual void SetCombiner(
SuggestionsCombiner
* combiner) = 0;
suggestions_combiner.h
25
class
SuggestionsCombiner
{
28
// the
SuggestionsCombiner
.
34
//
SuggestionsCombiner
.
38
virtual ~
SuggestionsCombiner
();
40
explicit
SuggestionsCombiner
(
SuggestionsCombiner
::Delegate* delegate,
43
// Add a new source. The
SuggestionsCombiner
takes ownership of |source|.
90
SuggestionsCombiner
::Delegate* delegate_;
105
DISALLOW_COPY_AND_ASSIGN(
SuggestionsCombiner
);
suggestions_source_top_sites.h
16
class
SuggestionsCombiner
;
37
virtual void SetCombiner(
SuggestionsCombiner
* combiner) OVERRIDE;
53
SuggestionsCombiner
* combiner_;
suggestions_combiner.cc
24
SuggestionsCombiner
::
SuggestionsCombiner
(
25
SuggestionsCombiner
::Delegate* delegate,
35
SuggestionsCombiner
::~
SuggestionsCombiner
() {
38
void
SuggestionsCombiner
::AddSource(SuggestionsSource* source) {
44
void
SuggestionsCombiner
::EnableDebug(bool enable) {
51
void
SuggestionsCombiner
::FetchItems(Profile* profile) {
58
base::ListValue*
SuggestionsCombiner
::GetPageValues() {
62
void
SuggestionsCombiner
::OnItemsReady()
[
all
...]
suggestions_page_handler.h
36
public
SuggestionsCombiner
::Delegate {
67
//
SuggestionsCombiner
::Delegate implementation.
89
scoped_ptr<
SuggestionsCombiner
> suggestions_combiner_;
suggestions_combiner_unittest.cc
134
// Not in the empty namespace since it's a friend of
SuggestionsCombiner
.
190
virtual void SetCombiner(
SuggestionsCombiner
* combiner) OVERRIDE {
196
SuggestionsCombiner
* combiner_;
217
SuggestionsCombiner
* combiner_;
221
combiner_ = new
SuggestionsCombiner
(suggestions_handler_, profile_);
228
combiner_ = new
SuggestionsCombiner
(suggestions_handler_, profile_);
suggestions_page_handler.cc
86
SuggestionsCombiner
* combiner = new
SuggestionsCombiner
(this, profile);
suggestions_source_top_sites.cc
84
void SuggestionsSourceTopSites::SetCombiner(
SuggestionsCombiner
* combiner) {
/external/chromium_org/chrome/browser/ui/webui/suggestions_internals/
suggestions_internals_ui_handler.h
20
public
SuggestionsCombiner
::Delegate {
25
//
SuggestionsCombiner
::Delegate implementation.
36
scoped_ptr<
SuggestionsCombiner
> suggestions_combiner_;
suggestions_internals_ui_handler.cc
33
suggestions_combiner_.reset(new
SuggestionsCombiner
(this, profile_));
Completed in 250 milliseconds