OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_FRAME_CHROME_FRAME_DELEGATE_H_ | 5 #ifndef CHROME_FRAME_CHROME_FRAME_DELEGATE_H_ |
6 #define CHROME_FRAME_CHROME_FRAME_DELEGATE_H_ | 6 #define CHROME_FRAME_CHROME_FRAME_DELEGATE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <atlbase.h> | 9 #include <atlbase.h> |
10 #include <atlwin.h> | 10 #include <atlwin.h> |
11 #include <queue> | 11 #include <queue> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/file_path.h" | 15 #include "base/file_path.h" |
16 #include "base/synchronization/lock.h" | 16 #include "base/synchronization/lock.h" |
17 #include "base/task.h" | 17 #include "base/task.h" |
| 18 #include "base/win/atlcheck.h" |
18 #include "chrome/common/automation_constants.h" | 19 #include "chrome/common/automation_constants.h" |
19 #include "ipc/ipc_message.h" | 20 #include "ipc/ipc_message.h" |
20 | 21 |
21 class GURL; | 22 class GURL; |
22 struct AttachExternalTabParams; | 23 struct AttachExternalTabParams; |
23 struct AutomationURLRequest; | 24 struct AutomationURLRequest; |
24 struct MiniContextMenuParams; | 25 struct MiniContextMenuParams; |
25 struct NavigationInfo; | 26 struct NavigationInfo; |
26 | 27 |
27 namespace net { | 28 namespace net { |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 } | 211 } |
211 | 212 |
212 return false; | 213 return false; |
213 } | 214 } |
214 | 215 |
215 base::Lock lock_; | 216 base::Lock lock_; |
216 std::queue<Task*> pending_tasks_; | 217 std::queue<Task*> pending_tasks_; |
217 }; | 218 }; |
218 | 219 |
219 #endif // CHROME_FRAME_CHROME_FRAME_DELEGATE_H_ | 220 #endif // CHROME_FRAME_CHROME_FRAME_DELEGATE_H_ |
OLD | NEW |