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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_types.cc

Issue 23495006: rAc: better Wallet error messages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: self review Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/autofill/autofill_dialog_types.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_types.cc b/chrome/browser/ui/autofill/autofill_dialog_types.cc
index ffd0c121576c6d77dbc3252cc89a37946987fe61..65d0850cb8065a250df30767cf6b7cc381cb7703 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_types.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.cc
@@ -5,15 +5,19 @@
#include "chrome/browser/ui/autofill/autofill_dialog_types.h"
#include "base/logging.h"
+#include "base/strings/string_split.h"
+#include "base/strings/string_util.h"
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
namespace autofill {
-int const kSplashDisplayDurationMs = 1200;
-int const kSplashFadeOutDurationMs = 200;
-int const kSplashFadeInDialogDurationMs = 150;
+const int kSplashDisplayDurationMs = 1200;
+const int kSplashFadeOutDurationMs = 200;
+const int kSplashFadeInDialogDurationMs = 150;
+
+static const base::char16 kRangeSeparator = '|';
DialogNotification::DialogNotification() : type_(NONE) {}
@@ -21,7 +25,17 @@ DialogNotification::DialogNotification(Type type, const string16& display_text)
: type_(type),
display_text_(display_text),
checked_(false),
- interactive_(true) {}
+ interactive_(true) {
+ // If there's a range separated by bars, mark that as the anchor text.
+ std::vector<base::string16> pieces;
+ base::SplitStringDontTrim(display_text, kRangeSeparator, &pieces);
+ if (pieces.size() > 1) {
+ link_range_ = ui::Range(pieces[0].size(), pieces[1].size());
+ display_text_ = JoinString(pieces, string16());
+ }
Ilya Sherman 2013/08/29 00:26:11 Please add test coverage for this logic.
Evan Stade 2013/08/30 02:52:21 Done.
+}
+
+DialogNotification::~DialogNotification() {}
SkColor DialogNotification::GetBackgroundColor() const {
switch (type_) {

Powered by Google App Engine
This is Rietveld 408576698