| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H__ | 5 #ifndef WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H__ |
| 6 #define WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H__ | 6 #define WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <list> | 9 #include <list> |
| 10 | 10 |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 // This flag indicates whether we started tracking a user gesture message. | 254 // This flag indicates whether we started tracking a user gesture message. |
| 255 bool user_gesture_message_posted_; | 255 bool user_gesture_message_posted_; |
| 256 | 256 |
| 257 // Runnable Method Factory used to invoke the OnUserGestureEnd method | 257 // Runnable Method Factory used to invoke the OnUserGestureEnd method |
| 258 // asynchronously. | 258 // asynchronously. |
| 259 ScopedRunnableMethodFactory<WebPluginDelegateImpl> user_gesture_msg_factory_; | 259 ScopedRunnableMethodFactory<WebPluginDelegateImpl> user_gesture_msg_factory_; |
| 260 | 260 |
| 261 // The url with which the plugin was instantiated. | 261 // The url with which the plugin was instantiated. |
| 262 std::string plugin_url_; | 262 std::string plugin_url_; |
| 263 | 263 |
| 264 // Indicates if the download would be initiated by the plugin or us. | |
| 265 bool load_manually_; | |
| 266 | |
| 267 // Indicates whether a geometry update sequence is the first. | |
| 268 bool first_geometry_update_; | |
| 269 | |
| 270 DISALLOW_EVIL_CONSTRUCTORS(WebPluginDelegateImpl); | 264 DISALLOW_EVIL_CONSTRUCTORS(WebPluginDelegateImpl); |
| 271 }; | 265 }; |
| 272 | 266 |
| 273 #endif // #ifndef WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H__ | 267 #endif // #ifndef WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H__ |
| 274 | 268 |
| OLD | NEW |