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

Side by Side Diff: chrome/browser/ui/views/edit_search_engine_dialog.h

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // EditSearchEngineDialog provides text fields for editing a keyword: the title, 5 // EditSearchEngineDialog provides text fields for editing a keyword: the title,
6 // url and actual keyword. It is used by the KeywordEditorView of the Options 6 // url and actual keyword. It is used by the KeywordEditorView of the Options
7 // dialog, and also on its own to confirm the addition of a keyword added by 7 // dialog, and also on its own to confirm the addition of a keyword added by
8 // the ExternalJSObject via the RenderView. 8 // the ExternalJSObject via the RenderView.
9 9
10 #ifndef CHROME_BROWSER_UI_VIEWS_EDIT_SEARCH_ENGINE_DIALOG_H_ 10 #ifndef CHROME_BROWSER_UI_VIEWS_EDIT_SEARCH_ENGINE_DIALOG_H_
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 // Text fields. 76 // Text fields.
77 views::Textfield* title_tf_; 77 views::Textfield* title_tf_;
78 views::Textfield* keyword_tf_; 78 views::Textfield* keyword_tf_;
79 views::Textfield* url_tf_; 79 views::Textfield* url_tf_;
80 80
81 // Shows error images. 81 // Shows error images.
82 views::ImageView* title_iv_; 82 views::ImageView* title_iv_;
83 views::ImageView* keyword_iv_; 83 views::ImageView* keyword_iv_;
84 views::ImageView* url_iv_; 84 views::ImageView* url_iv_;
85 85
86 scoped_ptr<EditSearchEngineController> controller_; 86 std::unique_ptr<EditSearchEngineController> controller_;
87 87
88 DISALLOW_COPY_AND_ASSIGN(EditSearchEngineDialog); 88 DISALLOW_COPY_AND_ASSIGN(EditSearchEngineDialog);
89 }; 89 };
90 90
91 #endif // CHROME_BROWSER_UI_VIEWS_EDIT_SEARCH_ENGINE_DIALOG_H_ 91 #endif // CHROME_BROWSER_UI_VIEWS_EDIT_SEARCH_ENGINE_DIALOG_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/dropdown_bar_host.cc ('k') | chrome/browser/ui/views/elevation_icon_setter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698