| 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_RENDER_WIDGET_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <deque> | 11 #include <deque> |
| 12 #include <map> | 12 #include <map> |
| 13 #include <memory> | 13 #include <memory> |
| 14 #include <queue> |
| 14 | 15 |
| 15 #include "base/callback.h" | 16 #include "base/callback.h" |
| 16 #include "base/compiler_specific.h" | 17 #include "base/compiler_specific.h" |
| 17 #include "base/macros.h" | 18 #include "base/macros.h" |
| 18 #include "base/memory/ref_counted.h" | 19 #include "base/memory/ref_counted.h" |
| 19 #include "base/observer_list.h" | 20 #include "base/observer_list.h" |
| 20 #include "base/time/time.h" | 21 #include "base/time/time.h" |
| 21 #include "build/build_config.h" | 22 #include "build/build_config.h" |
| 22 #include "content/common/content_export.h" | 23 #include "content/common/content_export.h" |
| 23 #include "content/common/cursors/webcursor.h" | 24 #include "content/common/cursors/webcursor.h" |
| (...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 // This reference is set by the RenderFrame and is used to query the IME- | 794 // This reference is set by the RenderFrame and is used to query the IME- |
| 794 // related state from the plugin to later send to the browser. | 795 // related state from the plugin to later send to the browser. |
| 795 PepperPluginInstanceImpl* focused_pepper_plugin_; | 796 PepperPluginInstanceImpl* focused_pepper_plugin_; |
| 796 | 797 |
| 797 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 798 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 798 }; | 799 }; |
| 799 | 800 |
| 800 } // namespace content | 801 } // namespace content |
| 801 | 802 |
| 802 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 803 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |