| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |