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

Side by Side Diff: chrome_frame/html_private_window_impl.h

Issue 8150002: Have Chrome Frame build its .idl artifacts into a sub-folder of SHARED_INTERMEDIATE_DIR, a global... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
grt (UTC plus 2) 2011/10/14 14:35:00 2011
robertshield 2011/10/17 13:38:13 Done.
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_PRIVATE_WINDOW_IMPL_H_ 5 #ifndef CHROME_FRAME_HTML_PRIVATE_WINDOW_IMPL_H_
6 #define CHROME_FRAME_HTML_PRIVATE_WINDOW_IMPL_H_ 6 #define CHROME_FRAME_HTML_PRIVATE_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 interface __declspec(uuid("3050F6DC-98B5-11CF-BB82-00AA00BDCE0B")) 16 interface __declspec(uuid("3050F6DC-98B5-11CF-BB82-00AA00BDCE0B"))
17 IHTMLPrivateWindow : public IUnknown { 17 IHTMLPrivateWindow : public IUnknown {
18 STDMETHOD(SuperNavigate)(BSTR , BSTR, BSTR, BSTR , VARIANT*, 18 STDMETHOD(SuperNavigate)(BSTR , BSTR, BSTR, BSTR , VARIANT*,
19 VARIANT*, ULONG) = 0; 19 VARIANT*, ULONG) = 0;
20 STDMETHOD(GetPendingUrl)(BSTR*) = 0; 20 STDMETHOD(GetPendingUrl)(BSTR*) = 0;
21 STDMETHOD(SetPICSTarget)(IOleCommandTarget*) = 0; 21 STDMETHOD(SetPICSTarget)(IOleCommandTarget*) = 0;
22 STDMETHOD(PICSComplete)(int) = 0; 22 STDMETHOD(PICSComplete)(int) = 0;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 } 57 }
58 58
59 STDMETHOD(GetAddressBarUrl)(BSTR* url) { 59 STDMETHOD(GetAddressBarUrl)(BSTR* url) {
60 DLOG(INFO) << __FUNCTION__; 60 DLOG(INFO) << __FUNCTION__;
61 return E_NOTIMPL; 61 return E_NOTIMPL;
62 } 62 }
63 }; 63 };
64 64
65 #endif // CHROME_FRAME_HTML_PRIVATE_WINDOW_IMPL_H_ 65 #endif // CHROME_FRAME_HTML_PRIVATE_WINDOW_IMPL_H_
66 66
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698