Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: chrome/browser/ui/cocoa/extensions/windowed_install_dialog_controller.h

Issue 1543393002: Switch to standard integer types in chrome/browser/ui/cocoa/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_WINDOWED_INSTALL_DIALOG_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_WINDOWED_INSTALL_DIALOG_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_WINDOWED_INSTALL_DIALOG_CONTROLLER_H_ 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_WINDOWED_INSTALL_DIALOG_CONTROLLER_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
11 #include "base/mac/scoped_nsobject.h" 11 #include "base/mac/scoped_nsobject.h"
12 #include "base/macros.h"
12 #include "chrome/browser/extensions/extension_install_prompt.h" 13 #include "chrome/browser/extensions/extension_install_prompt.h"
13 14
14 class ExtensionInstallPromptShowParams; 15 class ExtensionInstallPromptShowParams;
15 @class ExtensionInstallViewController; 16 @class ExtensionInstallViewController;
16 @class WindowedInstallController; 17 @class WindowedInstallController;
17 18
18 // Displays an app or extension install or permissions prompt as a standalone 19 // Displays an app or extension install or permissions prompt as a standalone
19 // NSPanel. 20 // NSPanel.
20 class WindowedInstallDialogController 21 class WindowedInstallDialogController
21 : public ExtensionInstallPrompt::Delegate { 22 : public ExtensionInstallPrompt::Delegate {
(...skipping 19 matching lines...) Expand all
41 ShowInstallDialog); 42 ShowInstallDialog);
42 ExtensionInstallViewController* GetViewController(); 43 ExtensionInstallViewController* GetViewController();
43 44
44 ExtensionInstallPrompt::Delegate* delegate_; 45 ExtensionInstallPrompt::Delegate* delegate_;
45 base::scoped_nsobject<WindowedInstallController> install_controller_; 46 base::scoped_nsobject<WindowedInstallController> install_controller_;
46 47
47 DISALLOW_COPY_AND_ASSIGN(WindowedInstallDialogController); 48 DISALLOW_COPY_AND_ASSIGN(WindowedInstallDialogController);
48 }; 49 };
49 50
50 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_WINDOWED_INSTALL_DIALOG_CONTROLLER _H_ 51 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_WINDOWED_INSTALL_DIALOG_CONTROLLER _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698