| Index: chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc
|
| diff --git a/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc
|
| index 8ec3a59181f01b82d44471fa31143d316de24a93..3262c8b4c9a1aad5246f7195519ecee448fd1444 100644
|
| --- a/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc
|
| +++ b/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc
|
| @@ -69,7 +69,7 @@ class BookmarkEditorViewTest : public TestingBrowserProcessTest {
|
| }
|
|
|
| void SetURLText(const std::wstring& text) {
|
| - editor_->url_tf_.SetText(text);
|
| + editor_->url_tf_->SetText(text);
|
| }
|
|
|
| void ApplyEdits(BookmarkEditorView::EditorNode* node) {
|
| @@ -82,7 +82,7 @@ class BookmarkEditorViewTest : public TestingBrowserProcessTest {
|
| }
|
|
|
| bool URLTFHasParent() {
|
| - return editor_->url_tf_.parent();
|
| + return editor_->url_tf_->parent();
|
| }
|
|
|
| MessageLoopForUI message_loop_;
|
|
|