| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_VIEWS_AUTOFILL_PROFILES_VIEW_WIN_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_AUTOFILL_PROFILES_VIEW_WIN_H_ |
| 6 #define CHROME_BROWSER_VIEWS_AUTOFILL_PROFILES_VIEW_WIN_H_ | 6 #define CHROME_BROWSER_VIEWS_AUTOFILL_PROFILES_VIEW_WIN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <list> | 9 #include <list> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "app/combobox_model.h" | 12 #include "app/combobox_model.h" |
| 13 #include "app/table_model.h" | 13 #include "app/table_model.h" |
| 14 #include "base/string16.h" | 14 #include "base/string16.h" |
| 15 #include "chrome/browser/autofill/autofill_dialog.h" | 15 #include "chrome/browser/autofill/autofill_dialog.h" |
| 16 #include "chrome/browser/autofill/autofill_profile.h" | 16 #include "chrome/browser/autofill/autofill_profile.h" |
| 17 #include "chrome/browser/autofill/personal_data_manager.h" | 17 #include "chrome/browser/autofill/personal_data_manager.h" |
| 18 #include "chrome/browser/pref_member.h" | 18 #include "chrome/browser/prefs/pref_member.h" |
| 19 #include "chrome/common/notification_observer.h" | 19 #include "chrome/common/notification_observer.h" |
| 20 #include "views/controls/combobox/combobox.h" | 20 #include "views/controls/combobox/combobox.h" |
| 21 #include "views/controls/link.h" | 21 #include "views/controls/link.h" |
| 22 #include "views/controls/table/table_view_observer.h" | 22 #include "views/controls/table/table_view_observer.h" |
| 23 #include "views/controls/textfield/textfield.h" | 23 #include "views/controls/textfield/textfield.h" |
| 24 #include "views/focus/focus_manager.h" | 24 #include "views/focus/focus_manager.h" |
| 25 #include "views/view.h" | 25 #include "views/view.h" |
| 26 #include "views/window/dialog_delegate.h" | 26 #include "views/window/dialog_delegate.h" |
| 27 | 27 |
| 28 namespace views { | 28 namespace views { |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 scoped_ptr<ContentListTableModel> table_model_; | 472 scoped_ptr<ContentListTableModel> table_model_; |
| 473 views::FocusManager* focus_manager_; | 473 views::FocusManager* focus_manager_; |
| 474 bool child_dialog_opened_; | 474 bool child_dialog_opened_; |
| 475 | 475 |
| 476 static AutoFillProfilesView* instance_; | 476 static AutoFillProfilesView* instance_; |
| 477 | 477 |
| 478 DISALLOW_COPY_AND_ASSIGN(AutoFillProfilesView); | 478 DISALLOW_COPY_AND_ASSIGN(AutoFillProfilesView); |
| 479 }; | 479 }; |
| 480 | 480 |
| 481 #endif // CHROME_BROWSER_VIEWS_AUTOFILL_PROFILES_VIEW_WIN_H_ | 481 #endif // CHROME_BROWSER_VIEWS_AUTOFILL_PROFILES_VIEW_WIN_H_ |
| OLD | NEW |