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

Side by Side Diff: chrome/browser/ui/omnibox/omnibox_view.cc

Issue 16629005: Use a direct include of strings headers in chrome/browser/ui/b*-p*/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // This file defines helper functions shared by the various implementations 5 // This file defines helper functions shared by the various implementations
6 // of OmniboxView. 6 // of OmniboxView.
7 7
8 #include "chrome/browser/ui/omnibox/omnibox_view.h" 8 #include "chrome/browser/ui/omnibox/omnibox_view.h"
9 9
10 #include "base/string16.h" 10 #include "base/strings/string16.h"
11 #include "base/string_util.h" 11 #include "base/strings/string_util.h"
12 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "chrome/browser/autocomplete/autocomplete_match.h" 13 #include "chrome/browser/autocomplete/autocomplete_match.h"
14 #include "ui/base/clipboard/clipboard.h" 14 #include "ui/base/clipboard/clipboard.h"
15 15
16 // static 16 // static
17 string16 OmniboxView::StripJavascriptSchemas(const string16& text) { 17 string16 OmniboxView::StripJavascriptSchemas(const string16& text) {
18 const string16 kJsPrefix(ASCIIToUTF16(chrome::kJavaScriptScheme) + 18 const string16 kJsPrefix(ASCIIToUTF16(chrome::kJavaScriptScheme) +
19 ASCIIToUTF16(":")); 19 ASCIIToUTF16(":"));
20 string16 out(text); 20 string16 out(text);
21 while (StartsWith(out, kJsPrefix, false)) 21 while (StartsWith(out, kJsPrefix, false))
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 // |profile| can be NULL in tests. 143 // |profile| can be NULL in tests.
144 if (profile) 144 if (profile)
145 model_.reset(new OmniboxEditModel(this, controller, profile)); 145 model_.reset(new OmniboxEditModel(this, controller, profile));
146 } 146 }
147 147
148 void OmniboxView::TextChanged() { 148 void OmniboxView::TextChanged() {
149 EmphasizeURLComponents(); 149 EmphasizeURLComponents();
150 if (model_.get()) 150 if (model_.get())
151 model_->OnChanged(); 151 model_->OnChanged();
152 } 152 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/omnibox/omnibox_view.h ('k') | chrome/browser/ui/omnibox/omnibox_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698