| 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_RENDERER_WEBPLUGIN_DELEGATE_PEPPER_H_ | 5 #ifndef CHROME_RENDERER_WEBPLUGIN_DELEGATE_PEPPER_H_ |
| 6 #define CHROME_RENDERER_WEBPLUGIN_DELEGATE_PEPPER_H_ | 6 #define CHROME_RENDERER_WEBPLUGIN_DELEGATE_PEPPER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| 11 #include <map> | |
| 12 #include <string> | 11 #include <string> |
| 13 #include <vector> | 12 #include <vector> |
| 14 | 13 |
| 15 #include "base/id_map.h" | 14 #include "base/id_map.h" |
| 16 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
| 17 #include "base/weak_ptr.h" | 16 #include "base/weak_ptr.h" |
| 18 #include "chrome/renderer/pepper_devices.h" | 17 #include "chrome/renderer/pepper_devices.h" |
| 19 #include "chrome/renderer/command_buffer_proxy.h" | 18 #include "chrome/renderer/command_buffer_proxy.h" |
| 20 #include "gfx/native_widget_types.h" | 19 #include "gfx/native_widget_types.h" |
| 21 #include "gfx/rect.h" | 20 #include "gfx/rect.h" |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 // pointer to the callback specified by the plugin. Will be NULL otherwise. | 335 // pointer to the callback specified by the plugin. Will be NULL otherwise. |
| 337 NPChooseFileCallback current_choose_file_callback_; | 336 NPChooseFileCallback current_choose_file_callback_; |
| 338 void* current_choose_file_user_data_; | 337 void* current_choose_file_user_data_; |
| 339 | 338 |
| 340 scoped_ptr<WebKit::WebCursorInfo> cursor_; | 339 scoped_ptr<WebKit::WebCursorInfo> cursor_; |
| 341 | 340 |
| 342 DISALLOW_COPY_AND_ASSIGN(WebPluginDelegatePepper); | 341 DISALLOW_COPY_AND_ASSIGN(WebPluginDelegatePepper); |
| 343 }; | 342 }; |
| 344 | 343 |
| 345 #endif // CHROME_RENDERER_WEBPLUGIN_DELEGATE_PEPPER_H_ | 344 #endif // CHROME_RENDERER_WEBPLUGIN_DELEGATE_PEPPER_H_ |
| OLD | NEW |