| Index: chrome/browser/ui/cocoa/autofill/autofill_main_container.mm
|
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_main_container.mm b/chrome/browser/ui/cocoa/autofill/autofill_main_container.mm
|
| index 8e4cff760cb3c5a0e83f3663b98ec264b46d70c1..2dce2d0c99cc8e2bc61a3cde87a0c56ee27e6585 100644
|
| --- a/chrome/browser/ui/cocoa/autofill/autofill_main_container.mm
|
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_main_container.mm
|
| @@ -20,7 +20,7 @@
|
| #import "third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h"
|
| #include "ui/base/cocoa/window_size_constants.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| -#include "ui/base/range/range.h"
|
| +#include "ui/gfx/range/range.h"
|
|
|
| @interface AutofillMainContainer (Private)
|
| - (void)buildWindowButtonsForFrame:(NSRect)frame;
|
| @@ -248,7 +248,7 @@
|
| withFont:font
|
| messageColor:[NSColor blackColor]];
|
|
|
| - const std::vector<ui::Range>& link_ranges =
|
| + const std::vector<gfx::Range>& link_ranges =
|
| delegate_->LegalDocumentLinks();
|
| for (size_t i = 0; i < link_ranges.size(); ++i) {
|
| NSRange range = link_ranges[i].ToNSRange();
|
|
|