| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_RENDEDER_HOST_RENDER_WIDGET_HELPER_H_ | 5 #ifndef CHROME_BROWSER_RENDEDER_HOST_RENDER_WIDGET_HELPER_H_ |
| 6 #define CHROME_BROWSER_RENDEDER_HOST_RENDER_WIDGET_HELPER_H_ | 6 #define CHROME_BROWSER_RENDEDER_HOST_RENDER_WIDGET_HELPER_H_ |
| 7 | 7 |
| 8 #include <map> |
| 9 |
| 8 #include "base/atomic_sequence_num.h" | 10 #include "base/atomic_sequence_num.h" |
| 9 #include "base/hash_tables.h" | 11 #include "base/hash_tables.h" |
| 10 #include "base/process.h" | 12 #include "base/process.h" |
| 11 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
| 12 #include "base/lock.h" | 14 #include "base/lock.h" |
| 13 #include "base/waitable_event.h" | 15 #include "base/waitable_event.h" |
| 14 #include "chrome/common/modal_dialog_event.h" | 16 #include "chrome/common/modal_dialog_event.h" |
| 15 #include "chrome/common/transport_dib.h" | 17 #include "chrome/common/transport_dib.h" |
| 16 | 18 |
| 17 namespace IPC { | 19 namespace IPC { |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 | 195 |
| 194 // The next routing id to use. | 196 // The next routing id to use. |
| 195 base::AtomicSequenceNumber next_routing_id_; | 197 base::AtomicSequenceNumber next_routing_id_; |
| 196 | 198 |
| 197 ResourceDispatcherHost* resource_dispatcher_host_; | 199 ResourceDispatcherHost* resource_dispatcher_host_; |
| 198 | 200 |
| 199 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHelper); | 201 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHelper); |
| 200 }; | 202 }; |
| 201 | 203 |
| 202 #endif // CHROME_BROWSER_RENDEDER_HOST_RENDER_WIDGET_HELPER_H_ | 204 #endif // CHROME_BROWSER_RENDEDER_HOST_RENDER_WIDGET_HELPER_H_ |
| OLD | NEW |