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_CHROME_ACTIVE_DOCUMENT_H_ | 5 #ifndef CHROME_FRAME_CHROME_ACTIVE_DOCUMENT_H_ |
6 #define CHROME_FRAME_CHROME_ACTIVE_DOCUMENT_H_ | 6 #define CHROME_FRAME_CHROME_ACTIVE_DOCUMENT_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlcom.h> | 9 #include <atlcom.h> |
10 #include <atlctl.h> | 10 #include <atlctl.h> |
11 #include <htiframe.h> | 11 #include <htiframe.h> |
12 #include <mshtmcid.h> | 12 #include <mshtmcid.h> |
13 #include <perhist.h> | 13 #include <perhist.h> |
14 | 14 |
15 #include <map> | 15 #include <map> |
16 #include <string> | 16 #include <string> |
17 | 17 |
18 #include "base/scoped_ptr.h" | 18 #include "base/scoped_ptr.h" |
19 #include "base/scoped_comptr_win.h" | 19 #include "base/scoped_comptr_win.h" |
20 #include "base/threading/thread.h" | 20 #include "base/threading/thread.h" |
| 21 #include "base/win/atlcheck.h" |
21 | 22 |
22 #include "chrome_frame/chrome_frame_activex_base.h" | 23 #include "chrome_frame/chrome_frame_activex_base.h" |
23 #include "chrome_frame/com_type_info_holder.h" | 24 #include "chrome_frame/com_type_info_holder.h" |
24 #include "chrome_frame/find_dialog.h" | 25 #include "chrome_frame/find_dialog.h" |
25 #include "chrome_frame/html_private_window_impl.h" | 26 #include "chrome_frame/html_private_window_impl.h" |
26 #include "chrome_frame/html_window_impl.h" | 27 #include "chrome_frame/html_window_impl.h" |
27 #include "chrome_frame/in_place_menu.h" | 28 #include "chrome_frame/in_place_menu.h" |
28 #include "chrome_frame/ole_document_impl.h" | 29 #include "chrome_frame/ole_document_impl.h" |
29 #include "chrome_frame/resource.h" | 30 #include "chrome_frame/resource.h" |
30 #include "chrome_frame/extra_system_apis.h" | 31 #include "chrome_frame/extra_system_apis.h" |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 UrlmonUrlRequestManager::PrivacyInfo::PrivacyRecords::iterator | 482 UrlmonUrlRequestManager::PrivacyInfo::PrivacyRecords::iterator |
482 next_privacy_record_; | 483 next_privacy_record_; |
483 | 484 |
484 // Dimensions of the window. Used only when opening popups. | 485 // Dimensions of the window. Used only when opening popups. |
485 gfx::Rect dimensions_; | 486 gfx::Rect dimensions_; |
486 public: | 487 public: |
487 OLEINPLACEFRAMEINFO frame_info_; | 488 OLEINPLACEFRAMEINFO frame_info_; |
488 }; | 489 }; |
489 | 490 |
490 #endif // CHROME_FRAME_CHROME_ACTIVE_DOCUMENT_H_ | 491 #endif // CHROME_FRAME_CHROME_ACTIVE_DOCUMENT_H_ |
OLD | NEW |