Update the CEF logo image in cefclient.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1548 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2013-12-09 19:03:49 +00:00
parent b28ce63adb
commit 992cc56583
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -46,7 +46,7 @@ class ClientSchemeHandler : public CefResourceHandler {
"This contents of this page page are served by the "
"ClientSchemeHandler class handling the client:// protocol."
"<br/>You should see an image:"
"<br/><img src=\"client://tests/client.png\"><pre>";
"<br/><img src=\"client://tests/logo.png\"><pre>";
// Output a string representation of the request
std::string dump;
@ -64,7 +64,7 @@ class ClientSchemeHandler : public CefResourceHandler {
// Set the resulting mime type
mime_type_ = "text/html";
} else if (strstr(url.c_str(), "client.png") != NULL) {
} else if (strstr(url.c_str(), "logo.png") != NULL) {
// Load the response image
if (LoadBinaryResource("logo.png", data_)) {
handled = true;