Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: chrome_frame/external_tab.h

Issue 4758001: Part 2 of reapplying r64637. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Window recompile after rebase? Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome_frame/chrome_frame_delegate.h ('k') | chrome_frame/external_tab.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "base/scoped_comptr_win.h" 14 #include "base/scoped_comptr_win.h"
15 #include "base/scoped_ptr.h" 15 #include "base/scoped_ptr.h"
16 #include "base/time.h" 16 #include "base/time.h"
17 #include "chrome/common//page_zoom.h" 17 #include "chrome/common/automation_constants.h"
18 #include "chrome/test/automation/automation_constants.h" 18 #include "chrome/common/page_zoom.h"
19 #include "chrome_frame/cfproxy.h" 19 #include "chrome_frame/cfproxy.h"
20 #include "chrome_frame/task_marshaller.h" 20 #include "chrome_frame/task_marshaller.h"
21 #include "googleurl/src/gurl.h" 21 #include "googleurl/src/gurl.h"
22 22
23 class Task; 23 class Task;
24 class CancelableTask; 24 class CancelableTask;
25 namespace base { 25 namespace base {
26 class TimeDelta; 26 class TimeDelta;
27 class WaitableEvent; 27 class WaitableEvent;
28 } 28 }
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 void Set(const GURL& gurl, const GURL& ref) { 216 void Set(const GURL& gurl, const GURL& ref) {
217 url = gurl; 217 url = gurl;
218 referrer = ref; 218 referrer = ref;
219 } 219 }
220 } pending_navigation_; 220 } pending_navigation_;
221 221
222 ScopedComPtr<IInternetSecurityManager> security_manager_; 222 ScopedComPtr<IInternetSecurityManager> security_manager_;
223 }; 223 };
224 224
225 #endif // CHROME_FRAME_EXTERNAL_TAB_H_ 225 #endif // CHROME_FRAME_EXTERNAL_TAB_H_
OLDNEW
« no previous file with comments | « chrome_frame/chrome_frame_delegate.h ('k') | chrome_frame/external_tab.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698