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

Side by Side Diff: chrome/browser/views/url_picker.cc

Issue 3066014: Cleanup: Remove unneeded headers from app/ (part 2) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 10 years, 4 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
« no previous file with comments | « chrome/browser/views/tabs/tab_strip.cc ('k') | chrome/nacl/nacl_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/views/url_picker.h" 5 #include "chrome/browser/views/url_picker.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
9 #include "app/table_model.h" 9 #include "app/table_model.h"
10 #include "app/table_model_observer.h"
11 #include "base/keyboard_codes.h" 10 #include "base/keyboard_codes.h"
12 #include "base/stl_util-inl.h" 11 #include "base/stl_util-inl.h"
13 #include "base/utf_string_conversions.h" 12 #include "base/utf_string_conversions.h"
14 #include "chrome/browser/net/url_fixer_upper.h" 13 #include "chrome/browser/net/url_fixer_upper.h"
15 #include "chrome/browser/possible_url_model.h" 14 #include "chrome/browser/possible_url_model.h"
16 #include "chrome/browser/pref_service.h" 15 #include "chrome/browser/pref_service.h"
17 #include "chrome/browser/profile.h" 16 #include "chrome/browser/profile.h"
18 #include "chrome/browser/tab_contents/tab_contents.h" 17 #include "chrome/browser/tab_contents/tab_contents.h"
19 #include "chrome/common/pref_names.h" 18 #include "chrome/common/pref_names.h"
20 #include "grit/app_resources.h" 19 #include "grit/app_resources.h"
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 PerformModelChange(); 239 PerformModelChange();
241 if (window()) 240 if (window())
242 window()->Close(); 241 window()->Close();
243 } 242 }
244 } 243 }
245 244
246 GURL UrlPicker::GetInputURL() const { 245 GURL UrlPicker::GetInputURL() const {
247 return URLFixerUpper::FixupURL(UTF16ToUTF8(url_field_->text()), 246 return URLFixerUpper::FixupURL(UTF16ToUTF8(url_field_->text()),
248 std::string()); 247 std::string());
249 } 248 }
OLDNEW
« no previous file with comments | « chrome/browser/views/tabs/tab_strip.cc ('k') | chrome/nacl/nacl_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698