| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_VIEWS_OPTIONS_EXCEPTIONS_PAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OPTIONS_EXCEPTIONS_PAGE_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_EXCEPTIONS_PAGE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_EXCEPTIONS_PAGE_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/browser/views/options/options_page_view.h" | 12 #include "chrome/browser/ui/views/options/options_page_view.h" |
| 13 #include "chrome/browser/views/options/passwords_page_view.h" | 13 #include "chrome/browser/ui/views/options/passwords_page_view.h" |
| 14 #include "views/controls/table/table_view_observer.h" | 14 #include "views/controls/table/table_view_observer.h" |
| 15 | 15 |
| 16 class Profile; | 16 class Profile; |
| 17 | 17 |
| 18 /////////////////////////////////////////////////////////////////////////////// | 18 /////////////////////////////////////////////////////////////////////////////// |
| 19 // ExceptionsTableModel | 19 // ExceptionsTableModel |
| 20 class ExceptionsTableModel : public PasswordsTableModel { | 20 class ExceptionsTableModel : public PasswordsTableModel { |
| 21 public: | 21 public: |
| 22 explicit ExceptionsTableModel(Profile* profile); | 22 explicit ExceptionsTableModel(Profile* profile); |
| 23 virtual ~ExceptionsTableModel(); | 23 virtual ~ExceptionsTableModel(); |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 // The buttons and labels. | 68 // The buttons and labels. |
| 69 views::NativeButton remove_button_; | 69 views::NativeButton remove_button_; |
| 70 views::NativeButton remove_all_button_; | 70 views::NativeButton remove_all_button_; |
| 71 MultiLabelButtons show_button_; | 71 MultiLabelButtons show_button_; |
| 72 | 72 |
| 73 DISALLOW_COPY_AND_ASSIGN(ExceptionsPageView); | 73 DISALLOW_COPY_AND_ASSIGN(ExceptionsPageView); |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_EXCEPTIONS_PAGE_VIEW_H_ | 76 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_EXCEPTIONS_PAGE_VIEW_H_ |
| OLD | NEW |