mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-24 16:31:39 +01:00
52196814b2
- Add WebKit-based printing support. - Add re-sizable text area support. - In release build, only log error messages and above. - Modify cef.sln to point at new file locations for dynamically generated project files. - More webkit_glue and webkit_init reorganization. - Movement towards using Web* basic types. - Include WebKit headers using the full path. - Add app cache support in ResourceLoaderBridge. - Method/member changes in WebViewDelegate. - Simplify code in PrintSettings. - Remove the WM_DESTROY and WM_NCDESTROY cases in WebWidgetHost::WndProc() to avoid a crash when closing a browser window via a DestroyWindow() call on a parent window. libcef_dll: - Add webkit_resources.rc and webkit_strings_en-US.rc to the project in order to support localized strings. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@23 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
// Copyright (c) 2008 The Chromium Embedded Framework Authors. All rights
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
// can be found in the LICENSE file.
|
|
|
|
#if defined(OS_WIN)
|
|
#include <windows.h>
|
|
#endif
|
|
#include <string>
|
|
|
|
#include "base/string_piece.h"
|
|
|
|
class WebFrame;
|
|
class WebView;
|
|
|
|
namespace webkit_glue {
|
|
|
|
// Return the HTML contents of a web frame as a string
|
|
std::string GetDocumentString(WebFrame* frame);
|
|
|
|
#if defined(OS_WIN)
|
|
// Capture a bitmap of the web view.
|
|
void CaptureWebViewBitmap(HWND mainWnd, WebView* webview, HBITMAP& bitmap,
|
|
SIZE& size);
|
|
|
|
// Save a bitmap image to file, providing optional alternative data in |lpBits|
|
|
BOOL SaveBitmapToFile(HBITMAP hBmp, HDC hDC, LPCTSTR file, LPBYTE lpBits);
|
|
#endif
|
|
|
|
// Text encoding objects must be initialized on the main thread.
|
|
void InitializeTextEncoding();
|
|
|
|
// This is called indirectly by the network layer to access resources.
|
|
StringPiece NetResourceProvider(int key);
|
|
|
|
} // namespace webkit_glue
|