| 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_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ | 5 #ifndef CHROME_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ |
| 6 #define CHROME_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ | 6 #define CHROME_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | |
| 11 | 10 |
| 12 #include "gfx/native_widget_types.h" | 11 #include "gfx/native_widget_types.h" |
| 13 #include "third_party/npapi/bindings/npapi.h" | 12 #include "third_party/npapi/bindings/npapi.h" |
| 14 | 13 |
| 15 #ifdef __OBJC__ | 14 #ifdef __OBJC__ |
| 16 @class NSImage; | 15 @class NSImage; |
| 17 @class NSString; | 16 @class NSString; |
| 18 #else | 17 #else |
| 19 class NSImage; | 18 class NSImage; |
| 20 class NSString; | 19 class NSString; |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 // Plugin icon | 288 // Plugin icon |
| 290 NSImage* image_; | 289 NSImage* image_; |
| 291 // Displayed text | 290 // Displayed text |
| 292 NSString* command_; | 291 NSString* command_; |
| 293 | 292 |
| 294 DISALLOW_COPY_AND_ASSIGN(PluginInstallerImpl); | 293 DISALLOW_COPY_AND_ASSIGN(PluginInstallerImpl); |
| 295 }; | 294 }; |
| 296 | 295 |
| 297 | 296 |
| 298 #endif // CHROME_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ | 297 #endif // CHROME_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ |
| OLD | NEW |