| 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_WEBKIT_GLUE_PLUGIN_CHANNEL_BASE_H_ | 5 #ifndef CHROME_PLUGIN_PLUGIN_CHANNEL_BASE_H_ |
| 6 #define CHROME_WEBKIT_GLUE_PLUGIN_CHANNEL_BASE_H_ | 6 #define CHROME_PLUGIN_PLUGIN_CHANNEL_BASE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "app/gfx/native_widget_types.h" | 10 #include "app/gfx/native_widget_types.h" |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/hash_tables.h" | 12 #include "base/hash_tables.h" |
| 13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
| 14 #include "base/ref_counted.h" | 14 #include "base/ref_counted.h" |
| 15 #include "base/scoped_ptr.h" | 15 #include "base/scoped_ptr.h" |
| 16 #include "chrome/common/message_router.h" | 16 #include "chrome/common/message_router.h" |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 // not. | 118 // not. |
| 119 int in_dispatch_; | 119 int in_dispatch_; |
| 120 | 120 |
| 121 // If true, sync messages will only be marked as unblocking if the channel is | 121 // If true, sync messages will only be marked as unblocking if the channel is |
| 122 // in the middle of dispatching a message. | 122 // in the middle of dispatching a message. |
| 123 bool send_unblocking_only_during_dispatch_; | 123 bool send_unblocking_only_during_dispatch_; |
| 124 | 124 |
| 125 DISALLOW_COPY_AND_ASSIGN(PluginChannelBase); | 125 DISALLOW_COPY_AND_ASSIGN(PluginChannelBase); |
| 126 }; | 126 }; |
| 127 | 127 |
| 128 #endif // CHROME_WEBKIT_GLUE_PLUGIN_CHANNEL_BASE_H_ | 128 #endif // CHROME_PLUGIN_PLUGIN_CHANNEL_BASE_H_ |
| OLD | NEW |