| OLD | NEW |
| 1 // Copyright (c) 2009 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_COCOA_HTML_DIALOG_WINDOW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_COCOA_HTML_DIALOG_WINDOW_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_COCOA_HTML_DIALOG_WINDOW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_COCOA_HTML_DIALOG_WINDOW_CONTROLLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | |
| 10 #include <vector> | |
| 11 | |
| 12 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
| 13 | 10 |
| 14 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 15 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
| 16 #include "chrome/browser/dom_ui/html_dialog_ui.h" | 13 #include "chrome/browser/dom_ui/html_dialog_ui.h" |
| 17 | 14 |
| 18 class HtmlDialogWindowDelegateBridge; | 15 class HtmlDialogWindowDelegateBridge; |
| 19 class Profile; | 16 class Profile; |
| 20 class TabContents; | 17 class TabContents; |
| 21 | 18 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 49 | 46 |
| 50 // Loads the HTML content from the delegate; this is not a lightweight | 47 // Loads the HTML content from the delegate; this is not a lightweight |
| 51 // process which is why it is not part of the constructor. Must be | 48 // process which is why it is not part of the constructor. Must be |
| 52 // called before showWindow. | 49 // called before showWindow. |
| 53 - (void)loadDialogContents; | 50 - (void)loadDialogContents; |
| 54 | 51 |
| 55 @end | 52 @end |
| 56 | 53 |
| 57 #endif // CHROME_BROWSER_COCOA_HTML_DIALOG_WINDOW_CONTROLLER_H_ | 54 #endif // CHROME_BROWSER_COCOA_HTML_DIALOG_WINDOW_CONTROLLER_H_ |
| 58 | 55 |
| OLD | NEW |