| OLD | NEW | 
|    1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |    1 // Copyright (c) 2012 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 CONTENT_RENDERER_NPAPI_WEBPLUGIN_DELEGATE_PROXY_H_ |    5 #ifndef CONTENT_RENDERER_NPAPI_WEBPLUGIN_DELEGATE_PROXY_H_ | 
|    6 #define CONTENT_RENDERER_NPAPI_WEBPLUGIN_DELEGATE_PROXY_H_ |    6 #define CONTENT_RENDERER_NPAPI_WEBPLUGIN_DELEGATE_PROXY_H_ | 
|    7  |    7  | 
|    8 #include <string> |    8 #include <string> | 
|    9 #include <vector> |    9 #include <vector> | 
|   10  |   10  | 
|   11 #include "base/memory/ref_counted.h" |   11 #include "base/memory/ref_counted.h" | 
|   12 #include "base/memory/scoped_ptr.h" |   12 #include "base/memory/scoped_ptr.h" | 
|   13 #include "base/memory/weak_ptr.h" |   13 #include "base/memory/weak_ptr.h" | 
|   14 #include "base/sequenced_task_runner_helpers.h" |   14 #include "base/sequenced_task_runner_helpers.h" | 
|   15 #include "content/child/npapi/webplugin_delegate.h" |   15 #include "content/child/npapi/webplugin_delegate.h" | 
|   16 #include "content/public/common/webplugininfo.h" |   16 #include "content/public/common/webplugininfo.h" | 
|   17 #include "ipc/ipc_listener.h" |   17 #include "ipc/ipc_listener.h" | 
|   18 #include "ipc/ipc_message.h" |   18 #include "ipc/ipc_message.h" | 
|   19 #include "ipc/ipc_sender.h" |   19 #include "ipc/ipc_sender.h" | 
|   20 #include "ui/gfx/geometry/rect.h" |   20 #include "ui/gfx/geometry/rect.h" | 
|   21 #include "ui/gfx/native_widget_types.h" |   21 #include "ui/gfx/native_widget_types.h" | 
|   22 #include "url/gurl.h" |   22 #include "url/gurl.h" | 
|   23  |   23  | 
|   24 #if defined(OS_MACOSX) |   24 #if defined(OS_MACOSX) | 
|   25 #include "base/containers/hash_tables.h" |   25 #include "base/containers/hash_tables.h" | 
|   26 #include "base/memory/linked_ptr.h" |  | 
|   27 #endif |   26 #endif | 
|   28  |   27  | 
|   29 struct NPObject; |   28 struct NPObject; | 
|   30 struct PluginHostMsg_URLRequest_Params; |   29 struct PluginHostMsg_URLRequest_Params; | 
|   31 class SkBitmap; |   30 class SkBitmap; | 
|   32  |   31  | 
|   33 namespace base { |   32 namespace base { | 
|   34 class WaitableEvent; |   33 class WaitableEvent; | 
|   35 } |   34 } | 
|   36  |   35  | 
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  310  |  309  | 
|  311   // The url of the main frame hosting the plugin. |  310   // The url of the main frame hosting the plugin. | 
|  312   GURL page_url_; |  311   GURL page_url_; | 
|  313  |  312  | 
|  314   DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateProxy); |  313   DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateProxy); | 
|  315 }; |  314 }; | 
|  316  |  315  | 
|  317 }  // namespace content |  316 }  // namespace content | 
|  318  |  317  | 
|  319 #endif  // CONTENT_RENDERER_NPAPI_WEBPLUGIN_DELEGATE_PROXY_H_ |  318 #endif  // CONTENT_RENDERER_NPAPI_WEBPLUGIN_DELEGATE_PROXY_H_ | 
| OLD | NEW |