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> | 10 #include <map> |
11 | 11 |
12 #include "app/table_model.h" | |
13 #include "chrome/browser/search_engines/edit_search_engine_controller.h" | 12 #include "chrome/browser/search_engines/edit_search_engine_controller.h" |
14 #include "chrome/browser/search_engines/keyword_editor_controller.h" | 13 #include "chrome/browser/search_engines/keyword_editor_controller.h" |
15 #include "chrome/browser/search_engines/template_url_model.h" | 14 #include "chrome/browser/search_engines/template_url_model.h" |
16 #include "views/controls/button/button.h" | 15 #include "views/controls/button/button.h" |
17 #include "views/controls/table/table_view_observer.h" | 16 #include "views/controls/table/table_view_observer.h" |
18 #include "views/view.h" | 17 #include "views/view.h" |
19 #include "views/window/dialog_delegate.h" | 18 #include "views/window/dialog_delegate.h" |
20 | 19 |
21 namespace views { | 20 namespace views { |
22 class Label; | 21 class Label; |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 views::TableView* table_view_; | 109 views::TableView* table_view_; |
111 views::NativeButton* add_button_; | 110 views::NativeButton* add_button_; |
112 views::NativeButton* edit_button_; | 111 views::NativeButton* edit_button_; |
113 views::NativeButton* remove_button_; | 112 views::NativeButton* remove_button_; |
114 views::NativeButton* make_default_button_; | 113 views::NativeButton* make_default_button_; |
115 | 114 |
116 DISALLOW_COPY_AND_ASSIGN(KeywordEditorView); | 115 DISALLOW_COPY_AND_ASSIGN(KeywordEditorView); |
117 }; | 116 }; |
118 | 117 |
119 #endif // CHROME_BROWSER_VIEWS_KEYWORD_EDITOR_VIEW_H_ | 118 #endif // CHROME_BROWSER_VIEWS_KEYWORD_EDITOR_VIEW_H_ |
OLD | NEW |