Home | History | Annotate | Download | only in browser

Lines Matching refs:row

111 const GURL& PossibleURLModel::GetURL(int row) {
112 if (row < 0 || row >= RowCount()) {
116 return results_[row].url;
119 const std::wstring& PossibleURLModel::GetTitle(int row) {
120 if (row < 0 || row >= RowCount()) {
124 return results_[row].title;
127 string16 PossibleURLModel::GetText(int row, int col_id) {
128 if (row < 0 || row >= RowCount()) {
134 string16 title = WideToUTF16Hack(GetTitle(row));
144 string16 url = results_[row].display_url.display_url();
148 SkBitmap PossibleURLModel::GetIcon(int row) {
149 if (row < 0 || row >= RowCount()) {
154 Result& result = results_[row];