- Remove the generated CEF project files from source control. Run cef_create_projects.bat in your working copy to generate them locally.

libcef:
- Use LPCWSTR instead of LPCTSTR in cef_win.h (issue #58).
- Fix return of document text in CefBrowserImpl::GetText() (issue #59).


git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@59 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2009-10-19 14:03:23 +00:00
parent 1bb179d101
commit faabcb28c5
9 changed files with 2 additions and 1311 deletions

View File

@ -179,7 +179,7 @@ std::wstring CefBrowserImpl::GetText(CefRefPtr<CefFrame> frame)
// Retrieve the document text directly
WebKit::WebFrame* web_frame = GetWebFrame(frame);
if(web_frame)
webkit_glue::DumpDocumentText(web_frame);
return webkit_glue::DumpDocumentText(web_frame);
return std::wstring();
}
}