OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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> |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 // a new ChromeActiveDocument instance is taking its place. | 321 // a new ChromeActiveDocument instance is taking its place. |
322 bool is_automation_client_reused_; | 322 bool is_automation_client_reused_; |
323 | 323 |
324 ScopedComPtr<IInternetSecurityManager> security_manager_; | 324 ScopedComPtr<IInternetSecurityManager> security_manager_; |
325 | 325 |
326 public: | 326 public: |
327 ScopedComPtr<IOleInPlaceFrame> in_place_frame_; | 327 ScopedComPtr<IOleInPlaceFrame> in_place_frame_; |
328 OLEINPLACEFRAMEINFO frame_info_; | 328 OLEINPLACEFRAMEINFO frame_info_; |
329 }; | 329 }; |
330 | 330 |
331 OBJECT_ENTRY_AUTO(__uuidof(ChromeActiveDocument), ChromeActiveDocument) | |
332 | |
333 #endif // CHROME_FRAME_CHROME_ACTIVE_DOCUMENT_H_ | 331 #endif // CHROME_FRAME_CHROME_ACTIVE_DOCUMENT_H_ |
OLD | NEW |