| OLD | NEW |
| 1 // Copyright (c) 2009 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_HTML_WINDOW_IMPL_H_ | 5 #ifndef CHROME_FRAME_HTML_WINDOW_IMPL_H_ |
| 6 #define CHROME_FRAME_HTML_WINDOW_IMPL_H_ | 6 #define CHROME_FRAME_HTML_WINDOW_IMPL_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlcom.h> | 9 #include <atlcom.h> |
| 10 #include <mshtml.h> | 10 #include <mshtml.h> |
| 11 | 11 |
| 12 #include "chrome_tab.h" // NOLINT | 12 #include "chrome_frame/chrome_tab.h" |
| 13 #include "chrome_frame/resource.h" | 13 #include "chrome_frame/resource.h" |
| 14 #include "grit/chrome_frame_resources.h" | 14 #include "grit/chrome_frame_resources.h" |
| 15 | 15 |
| 16 template <typename T> | 16 template <typename T> |
| 17 class ATL_NO_VTABLE HTMLWindowImpl | 17 class ATL_NO_VTABLE HTMLWindowImpl |
| 18 : public IDispatchImpl<T> { | 18 : public IDispatchImpl<T> { |
| 19 public: | 19 public: |
| 20 HTMLWindowImpl() {} | 20 HTMLWindowImpl() {} |
| 21 | 21 |
| 22 // IHTMLFramesCollection2 | 22 // IHTMLFramesCollection2 |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 | 376 |
| 377 STDMETHOD(get_external)(IDispatch** external) { | 377 STDMETHOD(get_external)(IDispatch** external) { |
| 378 DLOG(INFO) << __FUNCTION__; | 378 DLOG(INFO) << __FUNCTION__; |
| 379 return E_NOTIMPL; | 379 return E_NOTIMPL; |
| 380 } | 380 } |
| 381 | 381 |
| 382 }; | 382 }; |
| 383 | 383 |
| 384 #endif // CHROME_FRAME_HTML_WINDOW_IMPL_H_ | 384 #endif // CHROME_FRAME_HTML_WINDOW_IMPL_H_ |
| 385 | 385 |
| OLD | NEW |