| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_ |
| 7 | 7 |
| 8 #include "views/controls/tabbed_pane.h" | |
| 9 #include "views/view.h" | 8 #include "views/view.h" |
| 10 #include "views/window/dialog_delegate.h" | 9 #include "views/window/dialog_delegate.h" |
| 11 #include "views/window/window.h" | |
| 12 | 10 |
| 13 class Profile; | 11 class Profile; |
| 14 class PasswordsPageView; | 12 class PasswordsPageView; |
| 15 class ExceptionsPageView; | 13 class ExceptionsPageView; |
| 16 | 14 |
| 15 namespace views { |
| 16 class TabbedPane; |
| 17 } |
| 18 |
| 17 /////////////////////////////////////////////////////////////////////////////// | 19 /////////////////////////////////////////////////////////////////////////////// |
| 18 // PasswordsExceptionsWindowView | 20 // PasswordsExceptionsWindowView |
| 19 // | 21 // |
| 20 // The contents of the "Save passwords and exceptions" dialog window. | 22 // The contents of the "Save passwords and exceptions" dialog window. |
| 21 // | 23 // |
| 22 class PasswordsExceptionsWindowView : public views::View, | 24 class PasswordsExceptionsWindowView : public views::View, |
| 23 public views::DialogDelegate { | 25 public views::DialogDelegate { |
| 24 public: | 26 public: |
| 25 explicit PasswordsExceptionsWindowView(Profile* profile); | 27 explicit PasswordsExceptionsWindowView(Profile* profile); |
| 26 virtual ~PasswordsExceptionsWindowView() {} | 28 virtual ~PasswordsExceptionsWindowView() {} |
| (...skipping 28 matching lines...) Expand all Loading... |
| 55 ExceptionsPageView* exceptions_page_view_; | 57 ExceptionsPageView* exceptions_page_view_; |
| 56 | 58 |
| 57 Profile* profile_; | 59 Profile* profile_; |
| 58 | 60 |
| 59 static PasswordsExceptionsWindowView* instance_; | 61 static PasswordsExceptionsWindowView* instance_; |
| 60 | 62 |
| 61 DISALLOW_COPY_AND_ASSIGN(PasswordsExceptionsWindowView); | 63 DISALLOW_COPY_AND_ASSIGN(PasswordsExceptionsWindowView); |
| 62 }; | 64 }; |
| 63 | 65 |
| 64 #endif // CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_ | 66 #endif // CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_ |
| OLD | NEW |