| 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_KEYWORD_EDITOR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_KEYWORD_EDITOR_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_KEYWORD_EDITOR_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_KEYWORD_EDITOR_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <Windows.h> | 9 #include <Windows.h> |
| 10 #include <map> | |
| 11 | 10 |
| 12 #include "chrome/browser/search_engines/edit_search_engine_controller.h" | 11 #include "chrome/browser/search_engines/edit_search_engine_controller.h" |
| 13 #include "chrome/browser/search_engines/keyword_editor_controller.h" | 12 #include "chrome/browser/search_engines/keyword_editor_controller.h" |
| 14 #include "chrome/browser/search_engines/template_url_model.h" | 13 #include "chrome/browser/search_engines/template_url_model.h" |
| 15 #include "views/controls/button/button.h" | 14 #include "views/controls/button/button.h" |
| 16 #include "views/controls/table/table_view_observer.h" | 15 #include "views/controls/table/table_view_observer.h" |
| 17 #include "views/view.h" | 16 #include "views/view.h" |
| 18 #include "views/window/dialog_delegate.h" | 17 #include "views/window/dialog_delegate.h" |
| 19 | 18 |
| 20 namespace views { | 19 namespace views { |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 views::TableView* table_view_; | 108 views::TableView* table_view_; |
| 110 views::NativeButton* add_button_; | 109 views::NativeButton* add_button_; |
| 111 views::NativeButton* edit_button_; | 110 views::NativeButton* edit_button_; |
| 112 views::NativeButton* remove_button_; | 111 views::NativeButton* remove_button_; |
| 113 views::NativeButton* make_default_button_; | 112 views::NativeButton* make_default_button_; |
| 114 | 113 |
| 115 DISALLOW_COPY_AND_ASSIGN(KeywordEditorView); | 114 DISALLOW_COPY_AND_ASSIGN(KeywordEditorView); |
| 116 }; | 115 }; |
| 117 | 116 |
| 118 #endif // CHROME_BROWSER_VIEWS_KEYWORD_EDITOR_VIEW_H_ | 117 #endif // CHROME_BROWSER_VIEWS_KEYWORD_EDITOR_VIEW_H_ |
| OLD | NEW |