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_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
| 11 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
13 #include "base/sequenced_task_runner_helpers.h" | 14 #include "base/sequenced_task_runner_helpers.h" |
14 #include "ppapi/c/pp_var.h" | 15 #include "ppapi/c/pp_var.h" |
15 #include "third_party/WebKit/public/web/WebPlugin.h" | 16 #include "third_party/WebKit/public/web/WebPlugin.h" |
16 #include "ui/gfx/geometry/rect.h" | 17 #include "ui/gfx/geometry/rect.h" |
17 | 18 |
18 struct _NPP; | 19 struct _NPP; |
19 | 20 |
20 namespace blink { | 21 namespace blink { |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 PP_Var instance_object_; | 101 PP_Var instance_object_; |
101 blink::WebPluginContainer* container_; | 102 blink::WebPluginContainer* container_; |
102 base::WeakPtrFactory<PepperWebPluginImpl> weak_factory_; | 103 base::WeakPtrFactory<PepperWebPluginImpl> weak_factory_; |
103 | 104 |
104 DISALLOW_COPY_AND_ASSIGN(PepperWebPluginImpl); | 105 DISALLOW_COPY_AND_ASSIGN(PepperWebPluginImpl); |
105 }; | 106 }; |
106 | 107 |
107 } // namespace content | 108 } // namespace content |
108 | 109 |
109 #endif // CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ | 110 #endif // CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ |
OLD | NEW |