| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "app/surface/transport_dib.h" | 13 #include "app/surface/transport_dib.h" |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/process_util.h" | 15 #include "base/process_util.h" |
| 16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 bool suppress_next_char_events_; | 667 bool suppress_next_char_events_; |
| 668 | 668 |
| 669 std::vector<gfx::PluginWindowHandle> deferred_plugin_handles_; | 669 std::vector<gfx::PluginWindowHandle> deferred_plugin_handles_; |
| 670 | 670 |
| 671 // The last scroll offset of the render widget. | 671 // The last scroll offset of the render widget. |
| 672 gfx::Point last_scroll_offset_; | 672 gfx::Point last_scroll_offset_; |
| 673 | 673 |
| 674 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHost); | 674 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHost); |
| 675 }; | 675 }; |
| 676 | 676 |
| 677 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ | 677 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ |
| OLD | NEW |