你好,有四个接口无法使用 #60
Closed
laoshiren0822
started this conversation in
General
Replies: 1 comment
-
你是不是用了比较老的代码?这里已经统一了。 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
CefViewBrowserClientDelegateInterface抽象类中定义的是 const std::string &,但是在CCefClientDelegate接口实现用的是const CefString&
CefViewBrowserClientDelegateInterface声明:
virtual void addressChanged(CefRefPtr& browser, int64_t frameId, const std::string& url) = 0;
virtual void titleChanged(CefRefPtr& browser, const std::string& title) = 0;
virtual bool tooltipMessage(CefRefPtr& browser, const std::string& text) = 0;
virtual void statusMessage(CefRefPtr& browser, const std::string& value) = 0;
CCefClientDelegate继承CefViewBrowserClientDelegateInterface
virtual void addressChanged(CefRefPtr& browser, int frameId, const CefString& url);
virtual void titleChanged(CefRefPtr& browser, const CefString& title);
virtual bool tooltipMessage(CefRefPtr& browser, const CefString& text);
virtual void statusMessage(CefRefPtr& browser, const CefString& value);
Beta Was this translation helpful? Give feedback.
All reactions