HomeSort by relevance Sort by last modified time
    Searched refs:table_model (Results 1 - 5 of 5) sorted by null

  /external/chromium/chrome/browser/ui/webui/options/
search_engine_manager_handler.cc 35 if (list_controller_.get() && list_controller_->table_model())
36 list_controller_->table_model()->SetObserver(NULL);
42 list_controller_->table_model()->SetObserver(this);
108 int default_index = list_controller_->table_model()->IndexOfTemplateURL(
114 list_controller_->table_model()->last_search_engine_index();
123 int engine_count = list_controller_->table_model()->RowCount();
146 TemplateURLTableModel* table_model = list_controller_->table_model(); local
151 dict->SetString("displayName", table_model->GetText(
153 dict->SetString("keyword", table_model->GetText
    [all...]
  /external/chromium/chrome/browser/ui/search_engines/
keyword_editor_controller.h 64 TemplateURLTableModel* table_model() { function in class:KeywordEditorController
keyword_editor_controller_unittest.cc 90 TemplateURLTableModel* table_model() const { function in class:KeywordEditorControllerTest
91 return controller_->table_model();
120 controller_->table_model()->SetObserver(this);
133 ASSERT_EQ(1, table_model()->RowCount());
256 ASSERT_EQ(1, table_model()->RowCount());
257 ASSERT_EQ(0, table_model()->IndexOfTemplateURL(turl));
  /external/chromium/chrome/browser/ui/gtk/
gtk_tree.h 83 // |table_model| may be NULL.
86 ui::TableModel* table_model);
92 // was created with a NULL |table_model|.
93 void SetModel(ui::TableModel* table_model);
gtk_tree.cc 11 #include "ui/base/models/table_model.h"
84 ui::TableModel* table_model)
85 : delegate_(delegate), list_store_(list_store), table_model_(table_model) {
86 if (table_model)
87 table_model->SetObserver(this);
90 void TableAdapter::SetModel(ui::TableModel* table_model) {
91 table_model_ = table_model;

Completed in 172 milliseconds