Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: chrome/browser/possible_url_model.cc

Issue 6257006: Move a bunch of random other files to src/ui/base... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/possible_url_model.h" 5 #include "chrome/browser/possible_url_model.h"
6 6
7 #include "app/resource_bundle.h" 7 #include "app/resource_bundle.h"
8 #include "app/text_elider.h"
9 #include "base/callback.h" 8 #include "base/callback.h"
10 #include "base/i18n/rtl.h" 9 #include "base/i18n/rtl.h"
11 #include "base/string_util.h" 10 #include "base/string_util.h"
12 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
13 #include "chrome/browser/cancelable_request.h" 12 #include "chrome/browser/cancelable_request.h"
14 #include "chrome/browser/favicon_service.h" 13 #include "chrome/browser/favicon_service.h"
15 #include "chrome/browser/prefs/pref_service.h" 14 #include "chrome/browser/prefs/pref_service.h"
16 #include "chrome/browser/profiles/profile.h" 15 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/common/pref_names.h" 16 #include "chrome/common/pref_names.h"
18 #include "gfx/codec/png_codec.h" 17 #include "gfx/codec/png_codec.h"
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 // Notify the observer. 200 // Notify the observer.
202 if (!fav_icon_map_[index].isNull() && observer_) 201 if (!fav_icon_map_[index].isNull() && observer_)
203 observer_->OnItemsChanged(static_cast<int>(index), 1); 202 observer_->OnItemsChanged(static_cast<int>(index), 1);
204 } 203 }
205 } 204 }
206 } 205 }
207 206
208 void PossibleURLModel::SetObserver(ui::TableModelObserver* observer) { 207 void PossibleURLModel::SetObserver(ui::TableModelObserver* observer) {
209 observer_ = observer; 208 observer_ = observer;
210 } 209 }
OLDNEW
« no previous file with comments | « chrome/browser/gpu_process_host.cc ('k') | chrome/browser/printing/cloud_print/cloud_print_setup_flow.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698