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

Unified Diff: chrome/browser/ui/omnibox/omnibox_view.cc

Issue 6982011: Strip leading "javascript:" schemas from text pasted or dropped into the omnibox. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/omnibox/omnibox_view.cc
===================================================================
--- chrome/browser/ui/omnibox/omnibox_view.cc (revision 0)
+++ chrome/browser/ui/omnibox/omnibox_view.cc (revision 0)
@@ -0,0 +1,25 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// This file defines helper functions shared by the various implementations
+// of OmniBoxView.
+
+#include "chrome\browser\ui\omnibox\omnibox_view.h"
Peter Kasting 2011/05/24 00:15:18 Slashes are wrong direction
Cris Neckar 2011/05/24 05:23:33 Done.
+
+#include "base/string16.h"
+#include "base/string_util.h"
+#include "base/utf_string_conversions.h"
+
+namespace views {
+
+string16 StripJavascriptSchemas(const string16& text) {
+ const string16 kJsPrefix(ASCIIToUTF16(chrome::kJavaScriptScheme) +
+ ASCIIToUTF16(":"));
+ string16 out(text);
+ for (; StartsWith(out, kJsPrefix, false);
+ TrimWhitespace(out.substr(kJsPrefix.length()), TRIM_LEADING, &out)) { }
+ return out;
+}
+
+} // namespace views

Powered by Google App Engine
This is Rietveld 408576698