| OLD | NEW |
| 1 // Copyright (c) 2011 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_DOWNLOAD_DOWNLOAD_IN_PROGRESS_DIALOG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_IN_PROGRESS_DIALOG_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_IN_PROGRESS_DIALOG_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_IN_PROGRESS_DIALOG_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 virtual bool Cancel() OVERRIDE; | 40 virtual bool Cancel() OVERRIDE; |
| 41 virtual bool Accept() OVERRIDE; | 41 virtual bool Accept() OVERRIDE; |
| 42 virtual bool IsModal() const OVERRIDE; | 42 virtual bool IsModal() const OVERRIDE; |
| 43 virtual string16 GetWindowTitle() const OVERRIDE; | 43 virtual string16 GetWindowTitle() const OVERRIDE; |
| 44 virtual views::View* GetContentsView() OVERRIDE; | 44 virtual views::View* GetContentsView() OVERRIDE; |
| 45 | 45 |
| 46 Browser* browser_; | 46 Browser* browser_; |
| 47 views::Label* warning_; | 47 views::Label* warning_; |
| 48 views::Label* explanation_; | 48 views::Label* explanation_; |
| 49 | 49 |
| 50 string16 ok_button_text_; | 50 std::wstring ok_button_text_; |
| 51 string16 cancel_button_text_; | 51 std::wstring cancel_button_text_; |
| 52 | 52 |
| 53 string16 product_name_; | 53 string16 product_name_; |
| 54 | 54 |
| 55 gfx::Size dialog_dimensions_; | 55 gfx::Size dialog_dimensions_; |
| 56 | 56 |
| 57 DISALLOW_COPY_AND_ASSIGN(DownloadInProgressDialogView); | 57 DISALLOW_COPY_AND_ASSIGN(DownloadInProgressDialogView); |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 #endif // CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_IN_PROGRESS_DIALOG_VIEW_H_ | 60 #endif // CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_IN_PROGRESS_DIALOG_VIEW_H_ |
| OLD | NEW |