2013-11-26 23:02:14 +01:00
|
|
|
// Copyright (c) 2013 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.
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/cefsimple/simple_handler.h"
|
2013-11-26 23:02:14 +01:00
|
|
|
|
|
|
|
#include <windows.h>
|
2017-05-17 11:29:28 +02:00
|
|
|
#include <string>
|
2013-11-26 23:02:14 +01:00
|
|
|
|
|
|
|
#include "include/cef_browser.h"
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
void SimpleHandler::PlatformTitleChange(CefRefPtr<CefBrowser> browser,
|
|
|
|
const CefString& title) {
|
2013-11-26 23:02:14 +01:00
|
|
|
CefWindowHandle hwnd = browser->GetHost()->GetWindowHandle();
|
2023-01-02 23:59:03 +01:00
|
|
|
if (hwnd) {
|
2020-07-04 04:51:17 +02:00
|
|
|
SetWindowText(hwnd, std::wstring(title).c_str());
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2013-11-26 23:02:14 +01:00
|
|
|
}
|