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

Unified Diff: chrome/browser/views/options/cookies_view.h

Issue 115825: Move text_field.cc and rename the class to Textfield in preparation for porti... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 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
« no previous file with comments | « chrome/browser/views/options/content_page_view.cc ('k') | chrome/browser/views/options/cookies_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/options/cookies_view.h
===================================================================
--- chrome/browser/views/options/cookies_view.h (revision 17006)
+++ chrome/browser/views/options/cookies_view.h (working copy)
@@ -8,7 +8,7 @@
#include "base/task.h"
#include "views/controls/button/button.h"
#include "views/controls/table/table_view.h"
-#include "views/controls/text_field.h"
+#include "views/controls/textfield/textfield.h"
#include "views/view.h"
#include "views/window/dialog_delegate.h"
#include "views/window/window.h"
@@ -27,7 +27,7 @@
public views::DialogDelegate,
public views::ButtonListener,
public views::TableViewObserver,
- public views::TextField::Controller {
+ public views::Textfield::Controller {
public:
// Show the Cookies Window, creating one if necessary.
static void ShowCookiesWindow(Profile* profile);
@@ -47,11 +47,11 @@
// cookies.
virtual void OnTableViewDelete(views::TableView* table_view);
- // views::TextField::Controller implementation:
- virtual void ContentsChanged(views::TextField* sender,
+ // views::Textfield::Controller implementation:
+ virtual void ContentsChanged(views::Textfield* sender,
const std::wstring& new_contents);
- virtual bool HandleKeystroke(views::TextField* sender,
- const views::TextField::Keystroke& key);
+ virtual bool HandleKeystroke(views::Textfield* sender,
+ const views::Textfield::Keystroke& key);
// views::WindowDelegate implementation:
virtual int GetDialogButtons() const {
@@ -90,7 +90,7 @@
// Assorted dialog controls
views::Label* search_label_;
- views::TextField* search_field_;
+ views::Textfield* search_field_;
views::NativeButton* clear_search_button_;
views::Label* description_label_;
CookiesTableView* cookies_table_;
« no previous file with comments | « chrome/browser/views/options/content_page_view.cc ('k') | chrome/browser/views/options/cookies_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698