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

Unified Diff: chrome/browser/autocomplete/autocomplete_edit.cc

Issue 1761002: Tweaks to copy/paste of omnibox on windows: (Closed)
Patch Set: Updated comment Created 10 years, 8 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/autocomplete/autocomplete_edit.cc
diff --git a/chrome/browser/autocomplete/autocomplete_edit.cc b/chrome/browser/autocomplete/autocomplete_edit.cc
index 9b0aefbd6ad55bfd53f9ec13a692b27386f59916..5d68e5902a175414beb08a42a694800c2ac9961c 100644
--- a/chrome/browser/autocomplete/autocomplete_edit.cc
+++ b/chrome/browser/autocomplete/autocomplete_edit.cc
@@ -7,6 +7,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/string_util.h"
#include "base/utf_string_conversions.h"
#include "chrome/app/chrome_dll_resource.h"
#include "chrome/browser/autocomplete/autocomplete_classifier.h"
@@ -21,6 +22,7 @@
#include "chrome/browser/search_engines/template_url.h"
#include "chrome/browser/search_engines/template_url_model.h"
#include "chrome/common/notification_service.h"
+#include "chrome/common/url_constants.h"
#include "googleurl/src/gurl.h"
#include "googleurl/src/url_util.h"
#include "third_party/skia/include/core/SkBitmap.h"
@@ -165,6 +167,45 @@ bool AutocompleteEditModel::GetURLForText(const std::wstring& text,
return true;
}
+void AutocompleteEditModel::AdjustTextForCopy(int sel_start,
+ bool is_all_selected,
+ std::wstring* text,
+ GURL* url,
+ bool* write_url) {
+ *write_url = false;
+
+ if (sel_start != 0)
+ return;
+
+ // We can't use CurrentTextIsURL() or GetDataForURLExport() because right now
+ // the user is probably holding down control to cause the copy, which will
+ // screw up our calculation of the desired_tld.
+ if (!GetURLForText(*text, url))
+ return; // Can't be parsed as a url, no need to adjust text.
+
+ if (!user_input_in_progress() && is_all_selected) {
Evan Stade 2010/04/26 23:52:33 comment here about no unescaping? otherwise this c
+ *text = UTF8ToWide(url->spec());
+ *write_url = true;
+ return;
+ }
+
+ // Prefix the text with 'http://' if the text doesn't start with 'http://',
+ // the text parses as a url with a scheme of http, the user selected the
+ // entire host, and the user hasn't edited the host or manually removed the
+ // scheme.
+ if (url->SchemeIs(chrome::kHttpScheme)) {
+ std::wstring http = ASCIIToWide(chrome::kHttpScheme) +
+ ASCIIToWide(chrome::kStandardSchemeSeparator);
+ std::wstring host = UTF8ToWide(url->host());
+ if (text->compare(0, http.length(), http) != 0 &&
+ text->length() >= host.length() &&
+ permanent_text_.compare(0, host.length(), host) == 0) {
+ *text = http + *text;
+ *write_url = true;
+ }
+ }
+}
+
void AutocompleteEditModel::SetInputInProgress(bool in_progress) {
if (user_input_in_progress_ == in_progress)
return;
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_edit.h ('k') | chrome/browser/autocomplete/autocomplete_edit_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698