OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_EXTERNAL_TAB_H_ | 5 #ifndef CHROME_FRAME_EXTERNAL_TAB_H_ |
6 #define CHROME_FRAME_EXTERNAL_TAB_H_ | 6 #define CHROME_FRAME_EXTERNAL_TAB_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <windows.h> | 9 #include <windows.h> |
10 #include <atlbase.h> | 10 #include <atlbase.h> |
11 #include <atlwin.h> | 11 #include <atlwin.h> |
12 #include <vector> | 12 #include <vector> |
13 #include <string> | 13 #include <string> |
| 14 |
14 #include "base/scoped_comptr_win.h" | 15 #include "base/scoped_comptr_win.h" |
15 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
16 #include "base/time.h" | 17 #include "base/time.h" |
| 18 #include "base/win/atlcheck.h" |
17 #include "chrome/common/automation_constants.h" | 19 #include "chrome/common/automation_constants.h" |
18 #include "chrome_frame/cfproxy.h" | 20 #include "chrome_frame/cfproxy.h" |
19 #include "chrome_frame/task_marshaller.h" | 21 #include "chrome_frame/task_marshaller.h" |
20 #include "content/common/page_zoom.h" | 22 #include "content/common/page_zoom.h" |
21 #include "googleurl/src/gurl.h" | 23 #include "googleurl/src/gurl.h" |
22 | 24 |
23 class Task; | 25 class Task; |
24 class CancelableTask; | 26 class CancelableTask; |
25 | 27 |
26 namespace base { | 28 namespace base { |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 GURL url; | 225 GURL url; |
224 GURL referrer; | 226 GURL referrer; |
225 void Set(const GURL& gurl, const GURL& ref) { | 227 void Set(const GURL& gurl, const GURL& ref) { |
226 url = gurl; | 228 url = gurl; |
227 referrer = ref; | 229 referrer = ref; |
228 } | 230 } |
229 } pending_navigation_; | 231 } pending_navigation_; |
230 }; | 232 }; |
231 | 233 |
232 #endif // CHROME_FRAME_EXTERNAL_TAB_H_ | 234 #endif // CHROME_FRAME_EXTERNAL_TAB_H_ |
OLD | NEW |