| OLD | NEW |
| 1 // Copyright (c) 2010 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_UI_COCOA_EXTENSION_INSTALLED_BUBBLE_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALLED_BUBBLE_CONTROLLER
_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_EXTENSION_INSTALLED_BUBBLE_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALLED_BUBBLE_CONTROLLER
_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
| 10 | 10 |
| 11 #import "base/mac/cocoa_protocols.h" | 11 #import "base/mac/cocoa_protocols.h" |
| 12 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
| 13 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 13 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
| 14 #include "third_party/skia/include/core/SkBitmap.h" | 14 #include "third_party/skia/include/core/SkBitmap.h" |
| 15 | 15 |
| 16 class Browser; | 16 class Browser; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 - (void)removePageActionPreviewIfNecessary; | 102 - (void)removePageActionPreviewIfNecessary; |
| 103 - (NSWindow*)initializeWindow; | 103 - (NSWindow*)initializeWindow; |
| 104 - (int)calculateWindowHeight; | 104 - (int)calculateWindowHeight; |
| 105 - (void)setMessageFrames:(int)newWindowHeight; | 105 - (void)setMessageFrames:(int)newWindowHeight; |
| 106 - (NSRect)getExtensionInstalledMsgFrame; | 106 - (NSRect)getExtensionInstalledMsgFrame; |
| 107 - (NSRect)getExtraInfoMsgFrame; | 107 - (NSRect)getExtraInfoMsgFrame; |
| 108 - (NSRect)getExtensionInstalledInfoMsgFrame; | 108 - (NSRect)getExtensionInstalledInfoMsgFrame; |
| 109 | 109 |
| 110 @end // ExtensionInstalledBubbleController(ExposedForTesting) | 110 @end // ExtensionInstalledBubbleController(ExposedForTesting) |
| 111 | 111 |
| 112 #endif // CHROME_BROWSER_UI_COCOA_EXTENSION_INSTALLED_BUBBLE_CONTROLLER_H_ | 112 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALLED_BUBBLE_CONTROL
LER_H_ |
| OLD | NEW |