Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/shared/MsHTMLUtils.h

Issue 6505394822184960: Issue 1109 - Support notifications (Closed)
Patch Set: rebase and address comments Created July 23, 2015, 2:13 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #pragma once
2 #include <string>
3 #include <MsHTML.h>
4 #include <atlbase.h>
5
6 struct GetHtmlElementAttributeResult
7 {
8 GetHtmlElementAttributeResult() : isAttributeFound(false)
9 {
10 }
11 std::wstring attributeValue;
12 bool isAttributeFound;
13 };
14
15 GetHtmlElementAttributeResult GetHtmlElementAttribute(IHTMLElement& htmlElement,
16 const ATL::CComBSTR& attributeName);
OLDNEW

Powered by Google App Engine
This is Rietveld