| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_COCOA_EXTENSIONS_EXTENSION_INSTALL_DIALOG_CONTROLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALL_DIALOG_CONTROLLER_H
_ |
| 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALL_DIALOG_CONTROLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALL_DIALOG_CONTROLLER_H
_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "chrome/browser/extensions/extension_install_prompt.h" | 12 #include "chrome/browser/extensions/extension_install_prompt.h" |
| 13 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_mac.h" | 13 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_mac.h" |
| 14 #import "chrome/browser/ui/cocoa/extensions/extension_install_view_controller.h" | 14 #import "chrome/browser/ui/cocoa/extensions/extension_install_view_controller.h" |
| 15 | 15 |
| 16 namespace extensions { | 16 namespace extensions { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 ExtensionInstallPrompt::DoneCallback done_callback_; | 53 ExtensionInstallPrompt::DoneCallback done_callback_; |
| 54 base::scoped_nsobject<ExtensionInstallViewController> view_controller_; | 54 base::scoped_nsobject<ExtensionInstallViewController> view_controller_; |
| 55 std::unique_ptr<ConstrainedWindowMac> constrained_window_; | 55 std::unique_ptr<ConstrainedWindowMac> constrained_window_; |
| 56 std::unique_ptr<extensions::ExperienceSamplingEvent> sampling_event_; | 56 std::unique_ptr<extensions::ExperienceSamplingEvent> sampling_event_; |
| 57 | 57 |
| 58 DISALLOW_COPY_AND_ASSIGN(ExtensionInstallDialogController); | 58 DISALLOW_COPY_AND_ASSIGN(ExtensionInstallDialogController); |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALL_DIALOG_CONTROLLE
R_H_ | 61 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALL_DIALOG_CONTROLLE
R_H_ |
| OLD | NEW |