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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
11 #include <utility> | 11 #include <utility> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/callback.h" | 14 #include "base/callback.h" |
15 #include "base/gtest_prod_util.h" | |
16 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
18 #include "base/observer_list.h" | 17 #include "base/observer_list.h" |
19 #include "base/process/kill.h" | 18 #include "base/process/kill.h" |
20 #include "base/strings/string16.h" | 19 #include "base/strings/string16.h" |
21 #include "base/time/time.h" | 20 #include "base/time/time.h" |
22 #include "base/timer/timer.h" | 21 #include "base/timer/timer.h" |
23 #include "build/build_config.h" | 22 #include "build/build_config.h" |
24 #include "cc/resources/shared_bitmap.h" | 23 #include "cc/resources/shared_bitmap.h" |
25 #include "content/browser/renderer_host/event_with_latency_info.h" | 24 #include "content/browser/renderer_host/event_with_latency_info.h" |
(...skipping 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
838 bool is_focused_; | 837 bool is_focused_; |
839 | 838 |
840 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 839 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
841 | 840 |
842 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 841 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
843 }; | 842 }; |
844 | 843 |
845 } // namespace content | 844 } // namespace content |
846 | 845 |
847 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 846 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |