| Index: chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| index b619e2f407274e3f0b5643d9d76f89e3a6b0a1ac..f1b18a50fdce35e9e84b99d762f10cdf3745f2c3 100644
|
| --- a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| +++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| @@ -44,6 +44,8 @@
|
| #include "ui/views/widget/widget.h"
|
| #include "ui/views/window/dialog_client_view.h"
|
|
|
| +#include "ui/views/controls/rich_label.h"
|
| +
|
| namespace autofill {
|
|
|
| namespace {
|
| @@ -725,8 +727,25 @@ views::View* AutofillDialogViews::CreateTitlebarExtraView() {
|
| }
|
|
|
| views::View* AutofillDialogViews::CreateFootnoteView() {
|
| + std::vector<string16> strings;
|
| + std::vector<GURL> urls;
|
| + strings.push_back(ASCIIToUTF16("This is text blob 1. "));
|
| + urls.push_back(GURL());
|
| + strings.push_back(ASCIIToUTF16("This is text blob 2. "));
|
| + urls.push_back(GURL());
|
| + strings.push_back(ASCIIToUTF16("This is text blob 3 (linky). "));
|
| + urls.push_back(GURL("http://www.google.com"));
|
| + strings.push_back(ASCIIToUTF16("This is text blob 4. "));
|
| + urls.push_back(GURL());
|
| + strings.push_back(ASCIIToUTF16("This is text blob 5. (linky) "));
|
| + urls.push_back(GURL("http://www.google.com"));
|
| + strings.push_back(ASCIIToUTF16("This is text blob 6. (linky) "));
|
| + urls.push_back(GURL("http://www.google.com"));
|
| +
|
| + views::RichLabel* label = new views::RichLabel(strings, urls);
|
| +
|
| // TODO(estade): add a view to contain the terms of service.
|
| - return NULL;
|
| + return label;
|
| }
|
|
|
| bool AutofillDialogViews::Cancel() {
|
|
|