Replace OVERRIDE with override (see issue #3140)

This commit is contained in:
Marshall Greenblatt
2021-06-17 15:43:06 -04:00
parent 9c7367bd4e
commit 6d80ec69d7
149 changed files with 2076 additions and 2076 deletions

View File

@ -82,16 +82,16 @@
// Same as IMPLEMENT_REFCOUNTING() but using the specified Destructor. // Same as IMPLEMENT_REFCOUNTING() but using the specified Destructor.
#define IMPLEMENT_REFCOUNTING_EX(ClassName, Destructor) \ #define IMPLEMENT_REFCOUNTING_EX(ClassName, Destructor) \
public: \ public: \
void AddRef() const OVERRIDE { ref_count_.AddRef(); } \ void AddRef() const override { ref_count_.AddRef(); } \
bool Release() const OVERRIDE { \ bool Release() const override { \
if (ref_count_.Release()) { \ if (ref_count_.Release()) { \
Destructor::Destruct(this); \ Destructor::Destruct(this); \
return true; \ return true; \
} \ } \
return false; \ return false; \
} \ } \
bool HasOneRef() const OVERRIDE { return ref_count_.HasOneRef(); } \ bool HasOneRef() const override { return ref_count_.HasOneRef(); } \
bool HasAtLeastOneRef() const OVERRIDE { \ bool HasAtLeastOneRef() const override { \
return ref_count_.HasAtLeastOneRef(); \ return ref_count_.HasAtLeastOneRef(); \
} \ } \
\ \

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=e3a2949721f228e60049d3aee74253efd1d53f0d$ // $hash=367bc9fe924f8e63f0c952c56c2f4ed0d6690f43$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_AUTH_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_AUTH_CALLBACK_CTOCPP_H_
@ -34,8 +34,8 @@ class CefAuthCallbackCToCpp : public CefCToCppRefCounted<CefAuthCallbackCToCpp,
virtual ~CefAuthCallbackCToCpp(); virtual ~CefAuthCallbackCToCpp();
// CefAuthCallback methods. // CefAuthCallback methods.
void Continue(const CefString& username, const CefString& password) OVERRIDE; void Continue(const CefString& username, const CefString& password) override;
void Cancel() OVERRIDE; void Cancel() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_AUTH_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_AUTH_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=b54f6ec001036bb2cab243ced337eafd7cf22ec8$ // $hash=8f3bfa6fc1b6966f7f5f9f27ac8fa914cda67ffb$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_BEFORE_DOWNLOAD_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_BEFORE_DOWNLOAD_CALLBACK_CTOCPP_H_
@ -35,7 +35,7 @@ class CefBeforeDownloadCallbackCToCpp
virtual ~CefBeforeDownloadCallbackCToCpp(); virtual ~CefBeforeDownloadCallbackCToCpp();
// CefBeforeDownloadCallback methods. // CefBeforeDownloadCallback methods.
void Continue(const CefString& download_path, bool show_dialog) OVERRIDE; void Continue(const CefString& download_path, bool show_dialog) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_BEFORE_DOWNLOAD_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_BEFORE_DOWNLOAD_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=6722d4d826fa46825fe93093de549794e765cbbe$ // $hash=bff737f2a6f0c099ce559ef4f80a8cc3c0dbef25$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_BINARY_VALUE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_BINARY_VALUE_CTOCPP_H_
@ -34,13 +34,13 @@ class CefBinaryValueCToCpp : public CefCToCppRefCounted<CefBinaryValueCToCpp,
virtual ~CefBinaryValueCToCpp(); virtual ~CefBinaryValueCToCpp();
// CefBinaryValue methods. // CefBinaryValue methods.
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsOwned() OVERRIDE; bool IsOwned() override;
bool IsSame(CefRefPtr<CefBinaryValue> that) OVERRIDE; bool IsSame(CefRefPtr<CefBinaryValue> that) override;
bool IsEqual(CefRefPtr<CefBinaryValue> that) OVERRIDE; bool IsEqual(CefRefPtr<CefBinaryValue> that) override;
CefRefPtr<CefBinaryValue> Copy() OVERRIDE; CefRefPtr<CefBinaryValue> Copy() override;
size_t GetSize() OVERRIDE; size_t GetSize() override;
size_t GetData(void* buffer, size_t buffer_size, size_t data_offset) OVERRIDE; size_t GetData(void* buffer, size_t buffer_size, size_t data_offset) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_BINARY_VALUE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_BINARY_VALUE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=b87b59400a1b0693d9f4ac37546c7d0ce5190ff7$ // $hash=0d464b5cc5cafab59224cc9904cbbbddce9bcd3e$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_BROWSER_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_BROWSER_CTOCPP_H_
@ -36,27 +36,27 @@ class CefBrowserCToCpp
virtual ~CefBrowserCToCpp(); virtual ~CefBrowserCToCpp();
// CefBrowser methods. // CefBrowser methods.
bool IsValid() OVERRIDE; bool IsValid() override;
CefRefPtr<CefBrowserHost> GetHost() OVERRIDE; CefRefPtr<CefBrowserHost> GetHost() override;
bool CanGoBack() OVERRIDE; bool CanGoBack() override;
void GoBack() OVERRIDE; void GoBack() override;
bool CanGoForward() OVERRIDE; bool CanGoForward() override;
void GoForward() OVERRIDE; void GoForward() override;
bool IsLoading() OVERRIDE; bool IsLoading() override;
void Reload() OVERRIDE; void Reload() override;
void ReloadIgnoreCache() OVERRIDE; void ReloadIgnoreCache() override;
void StopLoad() OVERRIDE; void StopLoad() override;
int GetIdentifier() OVERRIDE; int GetIdentifier() override;
bool IsSame(CefRefPtr<CefBrowser> that) OVERRIDE; bool IsSame(CefRefPtr<CefBrowser> that) override;
bool IsPopup() OVERRIDE; bool IsPopup() override;
bool HasDocument() OVERRIDE; bool HasDocument() override;
CefRefPtr<CefFrame> GetMainFrame() OVERRIDE; CefRefPtr<CefFrame> GetMainFrame() override;
CefRefPtr<CefFrame> GetFocusedFrame() OVERRIDE; CefRefPtr<CefFrame> GetFocusedFrame() override;
CefRefPtr<CefFrame> GetFrame(int64 identifier) OVERRIDE; CefRefPtr<CefFrame> GetFrame(int64 identifier) override;
CefRefPtr<CefFrame> GetFrame(const CefString& name) OVERRIDE; CefRefPtr<CefFrame> GetFrame(const CefString& name) override;
size_t GetFrameCount() OVERRIDE; size_t GetFrameCount() override;
void GetFrameIdentifiers(std::vector<int64>& identifiers) OVERRIDE; void GetFrameIdentifiers(std::vector<int64>& identifiers) override;
void GetFrameNames(std::vector<CefString>& names) OVERRIDE; void GetFrameNames(std::vector<CefString>& names) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_BROWSER_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_BROWSER_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=95928a6e1311ff0406b502076defccc441d0b57c$ // $hash=0de1d0125514efd66096e5e900938b6481f0ec1d$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_BROWSER_HOST_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_BROWSER_HOST_CTOCPP_H_
@ -37,103 +37,103 @@ class CefBrowserHostCToCpp : public CefCToCppRefCounted<CefBrowserHostCToCpp,
virtual ~CefBrowserHostCToCpp(); virtual ~CefBrowserHostCToCpp();
// CefBrowserHost methods. // CefBrowserHost methods.
CefRefPtr<CefBrowser> GetBrowser() OVERRIDE; CefRefPtr<CefBrowser> GetBrowser() override;
void CloseBrowser(bool force_close) OVERRIDE; void CloseBrowser(bool force_close) override;
bool TryCloseBrowser() OVERRIDE; bool TryCloseBrowser() override;
void SetFocus(bool focus) OVERRIDE; void SetFocus(bool focus) override;
CefWindowHandle GetWindowHandle() OVERRIDE; CefWindowHandle GetWindowHandle() override;
CefWindowHandle GetOpenerWindowHandle() OVERRIDE; CefWindowHandle GetOpenerWindowHandle() override;
bool HasView() OVERRIDE; bool HasView() override;
CefRefPtr<CefClient> GetClient() OVERRIDE; CefRefPtr<CefClient> GetClient() override;
CefRefPtr<CefRequestContext> GetRequestContext() OVERRIDE; CefRefPtr<CefRequestContext> GetRequestContext() override;
double GetZoomLevel() OVERRIDE; double GetZoomLevel() override;
void SetZoomLevel(double zoomLevel) OVERRIDE; void SetZoomLevel(double zoomLevel) override;
void RunFileDialog(FileDialogMode mode, void RunFileDialog(FileDialogMode mode,
const CefString& title, const CefString& title,
const CefString& default_file_path, const CefString& default_file_path,
const std::vector<CefString>& accept_filters, const std::vector<CefString>& accept_filters,
int selected_accept_filter, int selected_accept_filter,
CefRefPtr<CefRunFileDialogCallback> callback) OVERRIDE; CefRefPtr<CefRunFileDialogCallback> callback) override;
void StartDownload(const CefString& url) OVERRIDE; void StartDownload(const CefString& url) override;
void DownloadImage(const CefString& image_url, void DownloadImage(const CefString& image_url,
bool is_favicon, bool is_favicon,
uint32 max_image_size, uint32 max_image_size,
bool bypass_cache, bool bypass_cache,
CefRefPtr<CefDownloadImageCallback> callback) OVERRIDE; CefRefPtr<CefDownloadImageCallback> callback) override;
void Print() OVERRIDE; void Print() override;
void PrintToPDF(const CefString& path, void PrintToPDF(const CefString& path,
const CefPdfPrintSettings& settings, const CefPdfPrintSettings& settings,
CefRefPtr<CefPdfPrintCallback> callback) OVERRIDE; CefRefPtr<CefPdfPrintCallback> callback) override;
void Find(int identifier, void Find(int identifier,
const CefString& searchText, const CefString& searchText,
bool forward, bool forward,
bool matchCase, bool matchCase,
bool findNext) OVERRIDE; bool findNext) override;
void StopFinding(bool clearSelection) OVERRIDE; void StopFinding(bool clearSelection) override;
void ShowDevTools(const CefWindowInfo& windowInfo, void ShowDevTools(const CefWindowInfo& windowInfo,
CefRefPtr<CefClient> client, CefRefPtr<CefClient> client,
const CefBrowserSettings& settings, const CefBrowserSettings& settings,
const CefPoint& inspect_element_at) OVERRIDE; const CefPoint& inspect_element_at) override;
void CloseDevTools() OVERRIDE; void CloseDevTools() override;
bool HasDevTools() OVERRIDE; bool HasDevTools() override;
bool SendDevToolsMessage(const void* message, size_t message_size) OVERRIDE; bool SendDevToolsMessage(const void* message, size_t message_size) override;
int ExecuteDevToolsMethod(int message_id, int ExecuteDevToolsMethod(int message_id,
const CefString& method, const CefString& method,
CefRefPtr<CefDictionaryValue> params) OVERRIDE; CefRefPtr<CefDictionaryValue> params) override;
CefRefPtr<CefRegistration> AddDevToolsMessageObserver( CefRefPtr<CefRegistration> AddDevToolsMessageObserver(
CefRefPtr<CefDevToolsMessageObserver> observer) OVERRIDE; CefRefPtr<CefDevToolsMessageObserver> observer) override;
void GetNavigationEntries(CefRefPtr<CefNavigationEntryVisitor> visitor, void GetNavigationEntries(CefRefPtr<CefNavigationEntryVisitor> visitor,
bool current_only) OVERRIDE; bool current_only) override;
void ReplaceMisspelling(const CefString& word) OVERRIDE; void ReplaceMisspelling(const CefString& word) override;
void AddWordToDictionary(const CefString& word) OVERRIDE; void AddWordToDictionary(const CefString& word) override;
bool IsWindowRenderingDisabled() OVERRIDE; bool IsWindowRenderingDisabled() override;
void WasResized() OVERRIDE; void WasResized() override;
void WasHidden(bool hidden) OVERRIDE; void WasHidden(bool hidden) override;
void NotifyScreenInfoChanged() OVERRIDE; void NotifyScreenInfoChanged() override;
void Invalidate(PaintElementType type) OVERRIDE; void Invalidate(PaintElementType type) override;
void SendExternalBeginFrame() OVERRIDE; void SendExternalBeginFrame() override;
void SendKeyEvent(const CefKeyEvent& event) OVERRIDE; void SendKeyEvent(const CefKeyEvent& event) override;
void SendMouseClickEvent(const CefMouseEvent& event, void SendMouseClickEvent(const CefMouseEvent& event,
MouseButtonType type, MouseButtonType type,
bool mouseUp, bool mouseUp,
int clickCount) OVERRIDE; int clickCount) override;
void SendMouseMoveEvent(const CefMouseEvent& event, bool mouseLeave) OVERRIDE; void SendMouseMoveEvent(const CefMouseEvent& event, bool mouseLeave) override;
void SendMouseWheelEvent(const CefMouseEvent& event, void SendMouseWheelEvent(const CefMouseEvent& event,
int deltaX, int deltaX,
int deltaY) OVERRIDE; int deltaY) override;
void SendTouchEvent(const CefTouchEvent& event) OVERRIDE; void SendTouchEvent(const CefTouchEvent& event) override;
void SendFocusEvent(bool setFocus) OVERRIDE; void SendFocusEvent(bool setFocus) override;
void SendCaptureLostEvent() OVERRIDE; void SendCaptureLostEvent() override;
void NotifyMoveOrResizeStarted() OVERRIDE; void NotifyMoveOrResizeStarted() override;
int GetWindowlessFrameRate() OVERRIDE; int GetWindowlessFrameRate() override;
void SetWindowlessFrameRate(int frame_rate) OVERRIDE; void SetWindowlessFrameRate(int frame_rate) override;
void ImeSetComposition(const CefString& text, void ImeSetComposition(const CefString& text,
const std::vector<CefCompositionUnderline>& underlines, const std::vector<CefCompositionUnderline>& underlines,
const CefRange& replacement_range, const CefRange& replacement_range,
const CefRange& selection_range) OVERRIDE; const CefRange& selection_range) override;
void ImeCommitText(const CefString& text, void ImeCommitText(const CefString& text,
const CefRange& replacement_range, const CefRange& replacement_range,
int relative_cursor_pos) OVERRIDE; int relative_cursor_pos) override;
void ImeFinishComposingText(bool keep_selection) OVERRIDE; void ImeFinishComposingText(bool keep_selection) override;
void ImeCancelComposition() OVERRIDE; void ImeCancelComposition() override;
void DragTargetDragEnter(CefRefPtr<CefDragData> drag_data, void DragTargetDragEnter(CefRefPtr<CefDragData> drag_data,
const CefMouseEvent& event, const CefMouseEvent& event,
DragOperationsMask allowed_ops) OVERRIDE; DragOperationsMask allowed_ops) override;
void DragTargetDragOver(const CefMouseEvent& event, void DragTargetDragOver(const CefMouseEvent& event,
DragOperationsMask allowed_ops) OVERRIDE; DragOperationsMask allowed_ops) override;
void DragTargetDragLeave() OVERRIDE; void DragTargetDragLeave() override;
void DragTargetDrop(const CefMouseEvent& event) OVERRIDE; void DragTargetDrop(const CefMouseEvent& event) override;
void DragSourceEndedAt(int x, int y, DragOperationsMask op) OVERRIDE; void DragSourceEndedAt(int x, int y, DragOperationsMask op) override;
void DragSourceSystemDragEnded() OVERRIDE; void DragSourceSystemDragEnded() override;
CefRefPtr<CefNavigationEntry> GetVisibleNavigationEntry() OVERRIDE; CefRefPtr<CefNavigationEntry> GetVisibleNavigationEntry() override;
void SetAccessibilityState(cef_state_t accessibility_state) OVERRIDE; void SetAccessibilityState(cef_state_t accessibility_state) override;
void SetAutoResizeEnabled(bool enabled, void SetAutoResizeEnabled(bool enabled,
const CefSize& min_size, const CefSize& min_size,
const CefSize& max_size) OVERRIDE; const CefSize& max_size) override;
CefRefPtr<CefExtension> GetExtension() OVERRIDE; CefRefPtr<CefExtension> GetExtension() override;
bool IsBackgroundHost() OVERRIDE; bool IsBackgroundHost() override;
void SetAudioMuted(bool mute) OVERRIDE; void SetAudioMuted(bool mute) override;
bool IsAudioMuted() OVERRIDE; bool IsAudioMuted() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_BROWSER_HOST_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_BROWSER_HOST_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=d5bd0e618c060e9410fdd4760d1e941e443a8010$ // $hash=cfe6a23edaeb6007470af483837252051ff1f878$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_CALLBACK_CTOCPP_H_
@ -34,8 +34,8 @@ class CefCallbackCToCpp : public CefCToCppRefCounted<CefCallbackCToCpp,
virtual ~CefCallbackCToCpp(); virtual ~CefCallbackCToCpp();
// CefCallback methods. // CefCallback methods.
void Continue() OVERRIDE; void Continue() override;
void Cancel() OVERRIDE; void Cancel() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=10d0f381490e63f0b95af48a93ea47e92459b5a3$ // $hash=3b118172f4f6ca9d2bc1bdde515ef7642db50b25$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_COMMAND_LINE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_COMMAND_LINE_CTOCPP_H_
@ -35,27 +35,27 @@ class CefCommandLineCToCpp : public CefCToCppRefCounted<CefCommandLineCToCpp,
virtual ~CefCommandLineCToCpp(); virtual ~CefCommandLineCToCpp();
// CefCommandLine methods. // CefCommandLine methods.
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
CefRefPtr<CefCommandLine> Copy() OVERRIDE; CefRefPtr<CefCommandLine> Copy() override;
void InitFromArgv(int argc, const char* const* argv) OVERRIDE; void InitFromArgv(int argc, const char* const* argv) override;
void InitFromString(const CefString& command_line) OVERRIDE; void InitFromString(const CefString& command_line) override;
void Reset() OVERRIDE; void Reset() override;
void GetArgv(std::vector<CefString>& argv) OVERRIDE; void GetArgv(std::vector<CefString>& argv) override;
CefString GetCommandLineString() OVERRIDE; CefString GetCommandLineString() override;
CefString GetProgram() OVERRIDE; CefString GetProgram() override;
void SetProgram(const CefString& program) OVERRIDE; void SetProgram(const CefString& program) override;
bool HasSwitches() OVERRIDE; bool HasSwitches() override;
bool HasSwitch(const CefString& name) OVERRIDE; bool HasSwitch(const CefString& name) override;
CefString GetSwitchValue(const CefString& name) OVERRIDE; CefString GetSwitchValue(const CefString& name) override;
void GetSwitches(SwitchMap& switches) OVERRIDE; void GetSwitches(SwitchMap& switches) override;
void AppendSwitch(const CefString& name) OVERRIDE; void AppendSwitch(const CefString& name) override;
void AppendSwitchWithValue(const CefString& name, void AppendSwitchWithValue(const CefString& name,
const CefString& value) OVERRIDE; const CefString& value) override;
bool HasArguments() OVERRIDE; bool HasArguments() override;
void GetArguments(ArgumentList& arguments) OVERRIDE; void GetArguments(ArgumentList& arguments) override;
void AppendArgument(const CefString& argument) OVERRIDE; void AppendArgument(const CefString& argument) override;
void PrependWrapper(const CefString& wrapper) OVERRIDE; void PrependWrapper(const CefString& wrapper) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_COMMAND_LINE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_COMMAND_LINE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=7de11c340a42046de92ca4cb8c5852269f3a3101$ // $hash=5b36f9d1883cdf85a1a9167d058cbf9e2081b2b9$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_CONTEXT_MENU_PARAMS_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_CONTEXT_MENU_PARAMS_CTOCPP_H_
@ -36,26 +36,26 @@ class CefContextMenuParamsCToCpp
virtual ~CefContextMenuParamsCToCpp(); virtual ~CefContextMenuParamsCToCpp();
// CefContextMenuParams methods. // CefContextMenuParams methods.
int GetXCoord() OVERRIDE; int GetXCoord() override;
int GetYCoord() OVERRIDE; int GetYCoord() override;
TypeFlags GetTypeFlags() OVERRIDE; TypeFlags GetTypeFlags() override;
CefString GetLinkUrl() OVERRIDE; CefString GetLinkUrl() override;
CefString GetUnfilteredLinkUrl() OVERRIDE; CefString GetUnfilteredLinkUrl() override;
CefString GetSourceUrl() OVERRIDE; CefString GetSourceUrl() override;
bool HasImageContents() OVERRIDE; bool HasImageContents() override;
CefString GetTitleText() OVERRIDE; CefString GetTitleText() override;
CefString GetPageUrl() OVERRIDE; CefString GetPageUrl() override;
CefString GetFrameUrl() OVERRIDE; CefString GetFrameUrl() override;
CefString GetFrameCharset() OVERRIDE; CefString GetFrameCharset() override;
MediaType GetMediaType() OVERRIDE; MediaType GetMediaType() override;
MediaStateFlags GetMediaStateFlags() OVERRIDE; MediaStateFlags GetMediaStateFlags() override;
CefString GetSelectionText() OVERRIDE; CefString GetSelectionText() override;
CefString GetMisspelledWord() OVERRIDE; CefString GetMisspelledWord() override;
bool GetDictionarySuggestions(std::vector<CefString>& suggestions) OVERRIDE; bool GetDictionarySuggestions(std::vector<CefString>& suggestions) override;
bool IsEditable() OVERRIDE; bool IsEditable() override;
bool IsSpellCheckEnabled() OVERRIDE; bool IsSpellCheckEnabled() override;
EditStateFlags GetEditStateFlags() OVERRIDE; EditStateFlags GetEditStateFlags() override;
bool IsCustomMenu() OVERRIDE; bool IsCustomMenu() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_CONTEXT_MENU_PARAMS_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_CONTEXT_MENU_PARAMS_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=86450b60ca929d794339574809c956ab0fec709e$ // $hash=8781d6b33b836b66c5a7c4c55949738c579cd59d$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_COOKIE_MANAGER_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_COOKIE_MANAGER_CTOCPP_H_
@ -35,17 +35,17 @@ class CefCookieManagerCToCpp
virtual ~CefCookieManagerCToCpp(); virtual ~CefCookieManagerCToCpp();
// CefCookieManager methods. // CefCookieManager methods.
bool VisitAllCookies(CefRefPtr<CefCookieVisitor> visitor) OVERRIDE; bool VisitAllCookies(CefRefPtr<CefCookieVisitor> visitor) override;
bool VisitUrlCookies(const CefString& url, bool VisitUrlCookies(const CefString& url,
bool includeHttpOnly, bool includeHttpOnly,
CefRefPtr<CefCookieVisitor> visitor) OVERRIDE; CefRefPtr<CefCookieVisitor> visitor) override;
bool SetCookie(const CefString& url, bool SetCookie(const CefString& url,
const CefCookie& cookie, const CefCookie& cookie,
CefRefPtr<CefSetCookieCallback> callback) OVERRIDE; CefRefPtr<CefSetCookieCallback> callback) override;
bool DeleteCookies(const CefString& url, bool DeleteCookies(const CefString& url,
const CefString& cookie_name, const CefString& cookie_name,
CefRefPtr<CefDeleteCookiesCallback> callback) OVERRIDE; CefRefPtr<CefDeleteCookiesCallback> callback) override;
bool FlushStore(CefRefPtr<CefCompletionCallback> callback) OVERRIDE; bool FlushStore(CefRefPtr<CefCompletionCallback> callback) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_COOKIE_MANAGER_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_COOKIE_MANAGER_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=77a328d9997c59ff25bcd943be0d878432cdbfea$ // $hash=e7dd0e7df0f2e46187c38a0b93b2a39a1ff70b1c$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_DICTIONARY_VALUE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_DICTIONARY_VALUE_CTOCPP_H_
@ -35,37 +35,37 @@ class CefDictionaryValueCToCpp
virtual ~CefDictionaryValueCToCpp(); virtual ~CefDictionaryValueCToCpp();
// CefDictionaryValue methods. // CefDictionaryValue methods.
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsOwned() OVERRIDE; bool IsOwned() override;
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
bool IsSame(CefRefPtr<CefDictionaryValue> that) OVERRIDE; bool IsSame(CefRefPtr<CefDictionaryValue> that) override;
bool IsEqual(CefRefPtr<CefDictionaryValue> that) OVERRIDE; bool IsEqual(CefRefPtr<CefDictionaryValue> that) override;
CefRefPtr<CefDictionaryValue> Copy(bool exclude_empty_children) OVERRIDE; CefRefPtr<CefDictionaryValue> Copy(bool exclude_empty_children) override;
size_t GetSize() OVERRIDE; size_t GetSize() override;
bool Clear() OVERRIDE; bool Clear() override;
bool HasKey(const CefString& key) OVERRIDE; bool HasKey(const CefString& key) override;
bool GetKeys(KeyList& keys) OVERRIDE; bool GetKeys(KeyList& keys) override;
bool Remove(const CefString& key) OVERRIDE; bool Remove(const CefString& key) override;
CefValueType GetType(const CefString& key) OVERRIDE; CefValueType GetType(const CefString& key) override;
CefRefPtr<CefValue> GetValue(const CefString& key) OVERRIDE; CefRefPtr<CefValue> GetValue(const CefString& key) override;
bool GetBool(const CefString& key) OVERRIDE; bool GetBool(const CefString& key) override;
int GetInt(const CefString& key) OVERRIDE; int GetInt(const CefString& key) override;
double GetDouble(const CefString& key) OVERRIDE; double GetDouble(const CefString& key) override;
CefString GetString(const CefString& key) OVERRIDE; CefString GetString(const CefString& key) override;
CefRefPtr<CefBinaryValue> GetBinary(const CefString& key) OVERRIDE; CefRefPtr<CefBinaryValue> GetBinary(const CefString& key) override;
CefRefPtr<CefDictionaryValue> GetDictionary(const CefString& key) OVERRIDE; CefRefPtr<CefDictionaryValue> GetDictionary(const CefString& key) override;
CefRefPtr<CefListValue> GetList(const CefString& key) OVERRIDE; CefRefPtr<CefListValue> GetList(const CefString& key) override;
bool SetValue(const CefString& key, CefRefPtr<CefValue> value) OVERRIDE; bool SetValue(const CefString& key, CefRefPtr<CefValue> value) override;
bool SetNull(const CefString& key) OVERRIDE; bool SetNull(const CefString& key) override;
bool SetBool(const CefString& key, bool value) OVERRIDE; bool SetBool(const CefString& key, bool value) override;
bool SetInt(const CefString& key, int value) OVERRIDE; bool SetInt(const CefString& key, int value) override;
bool SetDouble(const CefString& key, double value) OVERRIDE; bool SetDouble(const CefString& key, double value) override;
bool SetString(const CefString& key, const CefString& value) OVERRIDE; bool SetString(const CefString& key, const CefString& value) override;
bool SetBinary(const CefString& key, bool SetBinary(const CefString& key,
CefRefPtr<CefBinaryValue> value) OVERRIDE; CefRefPtr<CefBinaryValue> value) override;
bool SetDictionary(const CefString& key, bool SetDictionary(const CefString& key,
CefRefPtr<CefDictionaryValue> value) OVERRIDE; CefRefPtr<CefDictionaryValue> value) override;
bool SetList(const CefString& key, CefRefPtr<CefListValue> value) OVERRIDE; bool SetList(const CefString& key, CefRefPtr<CefListValue> value) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_DICTIONARY_VALUE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_DICTIONARY_VALUE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=be5aeaffe84056cb5b1f032eaa8db30142b5916b$ // $hash=65e0e380522652b9b6a24d2da247db99d52ca6a5$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_DOMDOCUMENT_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_DOMDOCUMENT_CTOCPP_H_
@ -34,20 +34,20 @@ class CefDOMDocumentCToCpp : public CefCToCppRefCounted<CefDOMDocumentCToCpp,
virtual ~CefDOMDocumentCToCpp(); virtual ~CefDOMDocumentCToCpp();
// CefDOMDocument methods. // CefDOMDocument methods.
Type GetType() OVERRIDE; Type GetType() override;
CefRefPtr<CefDOMNode> GetDocument() OVERRIDE; CefRefPtr<CefDOMNode> GetDocument() override;
CefRefPtr<CefDOMNode> GetBody() OVERRIDE; CefRefPtr<CefDOMNode> GetBody() override;
CefRefPtr<CefDOMNode> GetHead() OVERRIDE; CefRefPtr<CefDOMNode> GetHead() override;
CefString GetTitle() OVERRIDE; CefString GetTitle() override;
CefRefPtr<CefDOMNode> GetElementById(const CefString& id) OVERRIDE; CefRefPtr<CefDOMNode> GetElementById(const CefString& id) override;
CefRefPtr<CefDOMNode> GetFocusedNode() OVERRIDE; CefRefPtr<CefDOMNode> GetFocusedNode() override;
bool HasSelection() OVERRIDE; bool HasSelection() override;
int GetSelectionStartOffset() OVERRIDE; int GetSelectionStartOffset() override;
int GetSelectionEndOffset() OVERRIDE; int GetSelectionEndOffset() override;
CefString GetSelectionAsMarkup() OVERRIDE; CefString GetSelectionAsMarkup() override;
CefString GetSelectionAsText() OVERRIDE; CefString GetSelectionAsText() override;
CefString GetBaseURL() OVERRIDE; CefString GetBaseURL() override;
CefString GetCompleteURL(const CefString& partialURL) OVERRIDE; CefString GetCompleteURL(const CefString& partialURL) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_DOMDOCUMENT_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_DOMDOCUMENT_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=0261f2feb842f255f84c013f69076056e9710d98$ // $hash=76e4928368797aa342ddaec6b62b59e8b4a42052$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_DOMNODE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_DOMNODE_CTOCPP_H_
@ -33,33 +33,33 @@ class CefDOMNodeCToCpp
virtual ~CefDOMNodeCToCpp(); virtual ~CefDOMNodeCToCpp();
// CefDOMNode methods. // CefDOMNode methods.
Type GetType() OVERRIDE; Type GetType() override;
bool IsText() OVERRIDE; bool IsText() override;
bool IsElement() OVERRIDE; bool IsElement() override;
bool IsEditable() OVERRIDE; bool IsEditable() override;
bool IsFormControlElement() OVERRIDE; bool IsFormControlElement() override;
CefString GetFormControlElementType() OVERRIDE; CefString GetFormControlElementType() override;
bool IsSame(CefRefPtr<CefDOMNode> that) OVERRIDE; bool IsSame(CefRefPtr<CefDOMNode> that) override;
CefString GetName() OVERRIDE; CefString GetName() override;
CefString GetValue() OVERRIDE; CefString GetValue() override;
bool SetValue(const CefString& value) OVERRIDE; bool SetValue(const CefString& value) override;
CefString GetAsMarkup() OVERRIDE; CefString GetAsMarkup() override;
CefRefPtr<CefDOMDocument> GetDocument() OVERRIDE; CefRefPtr<CefDOMDocument> GetDocument() override;
CefRefPtr<CefDOMNode> GetParent() OVERRIDE; CefRefPtr<CefDOMNode> GetParent() override;
CefRefPtr<CefDOMNode> GetPreviousSibling() OVERRIDE; CefRefPtr<CefDOMNode> GetPreviousSibling() override;
CefRefPtr<CefDOMNode> GetNextSibling() OVERRIDE; CefRefPtr<CefDOMNode> GetNextSibling() override;
bool HasChildren() OVERRIDE; bool HasChildren() override;
CefRefPtr<CefDOMNode> GetFirstChild() OVERRIDE; CefRefPtr<CefDOMNode> GetFirstChild() override;
CefRefPtr<CefDOMNode> GetLastChild() OVERRIDE; CefRefPtr<CefDOMNode> GetLastChild() override;
CefString GetElementTagName() OVERRIDE; CefString GetElementTagName() override;
bool HasElementAttributes() OVERRIDE; bool HasElementAttributes() override;
bool HasElementAttribute(const CefString& attrName) OVERRIDE; bool HasElementAttribute(const CefString& attrName) override;
CefString GetElementAttribute(const CefString& attrName) OVERRIDE; CefString GetElementAttribute(const CefString& attrName) override;
void GetElementAttributes(AttributeMap& attrMap) OVERRIDE; void GetElementAttributes(AttributeMap& attrMap) override;
bool SetElementAttribute(const CefString& attrName, bool SetElementAttribute(const CefString& attrName,
const CefString& value) OVERRIDE; const CefString& value) override;
CefString GetElementInnerText() OVERRIDE; CefString GetElementInnerText() override;
CefRect GetElementBounds() OVERRIDE; CefRect GetElementBounds() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_DOMNODE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_DOMNODE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=7f1556d32762b7eb0c65afbb7d4c5014a97a96c9$ // $hash=c6b87f70eb695961c23c1fcff66c6d8e91663f6c$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_DOWNLOAD_ITEM_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_DOWNLOAD_ITEM_CALLBACK_CTOCPP_H_
@ -35,9 +35,9 @@ class CefDownloadItemCallbackCToCpp
virtual ~CefDownloadItemCallbackCToCpp(); virtual ~CefDownloadItemCallbackCToCpp();
// CefDownloadItemCallback methods. // CefDownloadItemCallback methods.
void Cancel() OVERRIDE; void Cancel() override;
void Pause() OVERRIDE; void Pause() override;
void Resume() OVERRIDE; void Resume() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_DOWNLOAD_ITEM_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_DOWNLOAD_ITEM_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=a536d8825fc85c5248fcdf5316bdf760e9f4a5e6$ // $hash=ea3a9e840594e7dc8cd36f8b122d95c0050b9d25$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_DOWNLOAD_ITEM_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_DOWNLOAD_ITEM_CTOCPP_H_
@ -34,23 +34,23 @@ class CefDownloadItemCToCpp : public CefCToCppRefCounted<CefDownloadItemCToCpp,
virtual ~CefDownloadItemCToCpp(); virtual ~CefDownloadItemCToCpp();
// CefDownloadItem methods. // CefDownloadItem methods.
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsInProgress() OVERRIDE; bool IsInProgress() override;
bool IsComplete() OVERRIDE; bool IsComplete() override;
bool IsCanceled() OVERRIDE; bool IsCanceled() override;
int64 GetCurrentSpeed() OVERRIDE; int64 GetCurrentSpeed() override;
int GetPercentComplete() OVERRIDE; int GetPercentComplete() override;
int64 GetTotalBytes() OVERRIDE; int64 GetTotalBytes() override;
int64 GetReceivedBytes() OVERRIDE; int64 GetReceivedBytes() override;
CefTime GetStartTime() OVERRIDE; CefTime GetStartTime() override;
CefTime GetEndTime() OVERRIDE; CefTime GetEndTime() override;
CefString GetFullPath() OVERRIDE; CefString GetFullPath() override;
uint32 GetId() OVERRIDE; uint32 GetId() override;
CefString GetURL() OVERRIDE; CefString GetURL() override;
CefString GetOriginalUrl() OVERRIDE; CefString GetOriginalUrl() override;
CefString GetSuggestedFileName() OVERRIDE; CefString GetSuggestedFileName() override;
CefString GetContentDisposition() OVERRIDE; CefString GetContentDisposition() override;
CefString GetMimeType() OVERRIDE; CefString GetMimeType() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_DOWNLOAD_ITEM_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_DOWNLOAD_ITEM_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=e5579ef142f0eb3873c7fd526320919b000f57ee$ // $hash=888cc05cf543d4017d40afb9e536ba4c083bc59f$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_DRAG_DATA_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_DRAG_DATA_CTOCPP_H_
@ -35,31 +35,31 @@ class CefDragDataCToCpp : public CefCToCppRefCounted<CefDragDataCToCpp,
virtual ~CefDragDataCToCpp(); virtual ~CefDragDataCToCpp();
// CefDragData methods. // CefDragData methods.
CefRefPtr<CefDragData> Clone() OVERRIDE; CefRefPtr<CefDragData> Clone() override;
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
bool IsLink() OVERRIDE; bool IsLink() override;
bool IsFragment() OVERRIDE; bool IsFragment() override;
bool IsFile() OVERRIDE; bool IsFile() override;
CefString GetLinkURL() OVERRIDE; CefString GetLinkURL() override;
CefString GetLinkTitle() OVERRIDE; CefString GetLinkTitle() override;
CefString GetLinkMetadata() OVERRIDE; CefString GetLinkMetadata() override;
CefString GetFragmentText() OVERRIDE; CefString GetFragmentText() override;
CefString GetFragmentHtml() OVERRIDE; CefString GetFragmentHtml() override;
CefString GetFragmentBaseURL() OVERRIDE; CefString GetFragmentBaseURL() override;
CefString GetFileName() OVERRIDE; CefString GetFileName() override;
size_t GetFileContents(CefRefPtr<CefStreamWriter> writer) OVERRIDE; size_t GetFileContents(CefRefPtr<CefStreamWriter> writer) override;
bool GetFileNames(std::vector<CefString>& names) OVERRIDE; bool GetFileNames(std::vector<CefString>& names) override;
void SetLinkURL(const CefString& url) OVERRIDE; void SetLinkURL(const CefString& url) override;
void SetLinkTitle(const CefString& title) OVERRIDE; void SetLinkTitle(const CefString& title) override;
void SetLinkMetadata(const CefString& data) OVERRIDE; void SetLinkMetadata(const CefString& data) override;
void SetFragmentText(const CefString& text) OVERRIDE; void SetFragmentText(const CefString& text) override;
void SetFragmentHtml(const CefString& html) OVERRIDE; void SetFragmentHtml(const CefString& html) override;
void SetFragmentBaseURL(const CefString& base_url) OVERRIDE; void SetFragmentBaseURL(const CefString& base_url) override;
void ResetFileContents() OVERRIDE; void ResetFileContents() override;
void AddFile(const CefString& path, const CefString& display_name) OVERRIDE; void AddFile(const CefString& path, const CefString& display_name) override;
CefRefPtr<CefImage> GetImage() OVERRIDE; CefRefPtr<CefImage> GetImage() override;
CefPoint GetImageHotspot() OVERRIDE; CefPoint GetImageHotspot() override;
bool HasImage() OVERRIDE; bool HasImage() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_DRAG_DATA_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_DRAG_DATA_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=faae935a841ecb55281ac5c8ff3621b2624c048f$ // $hash=f22147c7417a396f35b486dc9a0df309cd3cf8b7$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_EXTENSION_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_EXTENSION_CTOCPP_H_
@ -38,14 +38,14 @@ class CefExtensionCToCpp : public CefCToCppRefCounted<CefExtensionCToCpp,
virtual ~CefExtensionCToCpp(); virtual ~CefExtensionCToCpp();
// CefExtension methods. // CefExtension methods.
CefString GetIdentifier() OVERRIDE; CefString GetIdentifier() override;
CefString GetPath() OVERRIDE; CefString GetPath() override;
CefRefPtr<CefDictionaryValue> GetManifest() OVERRIDE; CefRefPtr<CefDictionaryValue> GetManifest() override;
bool IsSame(CefRefPtr<CefExtension> that) OVERRIDE; bool IsSame(CefRefPtr<CefExtension> that) override;
CefRefPtr<CefExtensionHandler> GetHandler() OVERRIDE; CefRefPtr<CefExtensionHandler> GetHandler() override;
CefRefPtr<CefRequestContext> GetLoaderContext() OVERRIDE; CefRefPtr<CefRequestContext> GetLoaderContext() override;
bool IsLoaded() OVERRIDE; bool IsLoaded() override;
void Unload() OVERRIDE; void Unload() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_EXTENSION_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_EXTENSION_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=333ff5ff1b7dacb0ef4aa1f025d97babd4c2f252$ // $hash=5eae6e5926edbbf4df1483890810048bd7883be4$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_FILE_DIALOG_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_FILE_DIALOG_CALLBACK_CTOCPP_H_
@ -37,8 +37,8 @@ class CefFileDialogCallbackCToCpp
// CefFileDialogCallback methods. // CefFileDialogCallback methods.
void Continue(int selected_accept_filter, void Continue(int selected_accept_filter,
const std::vector<CefString>& file_paths) OVERRIDE; const std::vector<CefString>& file_paths) override;
void Cancel() OVERRIDE; void Cancel() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_FILE_DIALOG_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_FILE_DIALOG_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=398e1f63c0456dac74d288e3dc7a7b23e488b78a$ // $hash=1e52bb7bf186d7368b281fd2d40d69894701895b$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_FRAME_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_FRAME_CTOCPP_H_
@ -39,36 +39,36 @@ class CefFrameCToCpp
virtual ~CefFrameCToCpp(); virtual ~CefFrameCToCpp();
// CefFrame methods. // CefFrame methods.
bool IsValid() OVERRIDE; bool IsValid() override;
void Undo() OVERRIDE; void Undo() override;
void Redo() OVERRIDE; void Redo() override;
void Cut() OVERRIDE; void Cut() override;
void Copy() OVERRIDE; void Copy() override;
void Paste() OVERRIDE; void Paste() override;
void Delete() OVERRIDE; void Delete() override;
void SelectAll() OVERRIDE; void SelectAll() override;
void ViewSource() OVERRIDE; void ViewSource() override;
void GetSource(CefRefPtr<CefStringVisitor> visitor) OVERRIDE; void GetSource(CefRefPtr<CefStringVisitor> visitor) override;
void GetText(CefRefPtr<CefStringVisitor> visitor) OVERRIDE; void GetText(CefRefPtr<CefStringVisitor> visitor) override;
void LoadRequest(CefRefPtr<CefRequest> request) OVERRIDE; void LoadRequest(CefRefPtr<CefRequest> request) override;
void LoadURL(const CefString& url) OVERRIDE; void LoadURL(const CefString& url) override;
void ExecuteJavaScript(const CefString& code, void ExecuteJavaScript(const CefString& code,
const CefString& script_url, const CefString& script_url,
int start_line) OVERRIDE; int start_line) override;
bool IsMain() OVERRIDE; bool IsMain() override;
bool IsFocused() OVERRIDE; bool IsFocused() override;
CefString GetName() OVERRIDE; CefString GetName() override;
int64 GetIdentifier() OVERRIDE; int64 GetIdentifier() override;
CefRefPtr<CefFrame> GetParent() OVERRIDE; CefRefPtr<CefFrame> GetParent() override;
CefString GetURL() OVERRIDE; CefString GetURL() override;
CefRefPtr<CefBrowser> GetBrowser() OVERRIDE; CefRefPtr<CefBrowser> GetBrowser() override;
CefRefPtr<CefV8Context> GetV8Context() OVERRIDE; CefRefPtr<CefV8Context> GetV8Context() override;
void VisitDOM(CefRefPtr<CefDOMVisitor> visitor) OVERRIDE; void VisitDOM(CefRefPtr<CefDOMVisitor> visitor) override;
CefRefPtr<CefURLRequest> CreateURLRequest( CefRefPtr<CefURLRequest> CreateURLRequest(
CefRefPtr<CefRequest> request, CefRefPtr<CefRequest> request,
CefRefPtr<CefURLRequestClient> client) OVERRIDE; CefRefPtr<CefURLRequestClient> client) override;
void SendProcessMessage(CefProcessId target_process, void SendProcessMessage(CefProcessId target_process,
CefRefPtr<CefProcessMessage> message) OVERRIDE; CefRefPtr<CefProcessMessage> message) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_FRAME_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_FRAME_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=1e4ced3624db151e599c0928a7a87211d5dd8d57$ // $hash=38df2c1411c040ada0d2ea23d1678767d237844d$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_GET_EXTENSION_RESOURCE_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_GET_EXTENSION_RESOURCE_CALLBACK_CTOCPP_H_
@ -37,8 +37,8 @@ class CefGetExtensionResourceCallbackCToCpp
virtual ~CefGetExtensionResourceCallbackCToCpp(); virtual ~CefGetExtensionResourceCallbackCToCpp();
// CefGetExtensionResourceCallback methods. // CefGetExtensionResourceCallback methods.
void Continue(CefRefPtr<CefStreamReader> stream) OVERRIDE; void Continue(CefRefPtr<CefStreamReader> stream) override;
void Cancel() OVERRIDE; void Cancel() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_GET_EXTENSION_RESOURCE_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_GET_EXTENSION_RESOURCE_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=417397bf09d546377dfa4c067d5c569b0348abff$ // $hash=33b5618b8b3ed610b91c92b33d0647639b6acd1b$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_IMAGE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_IMAGE_CTOCPP_H_
@ -33,42 +33,42 @@ class CefImageCToCpp
virtual ~CefImageCToCpp(); virtual ~CefImageCToCpp();
// CefImage methods. // CefImage methods.
bool IsEmpty() OVERRIDE; bool IsEmpty() override;
bool IsSame(CefRefPtr<CefImage> that) OVERRIDE; bool IsSame(CefRefPtr<CefImage> that) override;
bool AddBitmap(float scale_factor, bool AddBitmap(float scale_factor,
int pixel_width, int pixel_width,
int pixel_height, int pixel_height,
cef_color_type_t color_type, cef_color_type_t color_type,
cef_alpha_type_t alpha_type, cef_alpha_type_t alpha_type,
const void* pixel_data, const void* pixel_data,
size_t pixel_data_size) OVERRIDE; size_t pixel_data_size) override;
bool AddPNG(float scale_factor, bool AddPNG(float scale_factor,
const void* png_data, const void* png_data,
size_t png_data_size) OVERRIDE; size_t png_data_size) override;
bool AddJPEG(float scale_factor, bool AddJPEG(float scale_factor,
const void* jpeg_data, const void* jpeg_data,
size_t jpeg_data_size) OVERRIDE; size_t jpeg_data_size) override;
size_t GetWidth() OVERRIDE; size_t GetWidth() override;
size_t GetHeight() OVERRIDE; size_t GetHeight() override;
bool HasRepresentation(float scale_factor) OVERRIDE; bool HasRepresentation(float scale_factor) override;
bool RemoveRepresentation(float scale_factor) OVERRIDE; bool RemoveRepresentation(float scale_factor) override;
bool GetRepresentationInfo(float scale_factor, bool GetRepresentationInfo(float scale_factor,
float& actual_scale_factor, float& actual_scale_factor,
int& pixel_width, int& pixel_width,
int& pixel_height) OVERRIDE; int& pixel_height) override;
CefRefPtr<CefBinaryValue> GetAsBitmap(float scale_factor, CefRefPtr<CefBinaryValue> GetAsBitmap(float scale_factor,
cef_color_type_t color_type, cef_color_type_t color_type,
cef_alpha_type_t alpha_type, cef_alpha_type_t alpha_type,
int& pixel_width, int& pixel_width,
int& pixel_height) OVERRIDE; int& pixel_height) override;
CefRefPtr<CefBinaryValue> GetAsPNG(float scale_factor, CefRefPtr<CefBinaryValue> GetAsPNG(float scale_factor,
bool with_transparency, bool with_transparency,
int& pixel_width, int& pixel_width,
int& pixel_height) OVERRIDE; int& pixel_height) override;
CefRefPtr<CefBinaryValue> GetAsJPEG(float scale_factor, CefRefPtr<CefBinaryValue> GetAsJPEG(float scale_factor,
int quality, int quality,
int& pixel_width, int& pixel_width,
int& pixel_height) OVERRIDE; int& pixel_height) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_IMAGE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_IMAGE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=036ba78ec1797ee75002a5562fd0b0b97dff7392$ // $hash=75100859481e72f7edaf81e712969eab01d34869$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_JSDIALOG_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_JSDIALOG_CALLBACK_CTOCPP_H_
@ -35,7 +35,7 @@ class CefJSDialogCallbackCToCpp
virtual ~CefJSDialogCallbackCToCpp(); virtual ~CefJSDialogCallbackCToCpp();
// CefJSDialogCallback methods. // CefJSDialogCallback methods.
void Continue(bool success, const CefString& user_input) OVERRIDE; void Continue(bool success, const CefString& user_input) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_JSDIALOG_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_JSDIALOG_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=643127d0c9772dbab1980c797ceef47a12f00f48$ // $hash=c73d2be6db899adb20faa9e1e6d6bf095f9ef2f0$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_LIST_VALUE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_LIST_VALUE_CTOCPP_H_
@ -34,35 +34,35 @@ class CefListValueCToCpp : public CefCToCppRefCounted<CefListValueCToCpp,
virtual ~CefListValueCToCpp(); virtual ~CefListValueCToCpp();
// CefListValue methods. // CefListValue methods.
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsOwned() OVERRIDE; bool IsOwned() override;
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
bool IsSame(CefRefPtr<CefListValue> that) OVERRIDE; bool IsSame(CefRefPtr<CefListValue> that) override;
bool IsEqual(CefRefPtr<CefListValue> that) OVERRIDE; bool IsEqual(CefRefPtr<CefListValue> that) override;
CefRefPtr<CefListValue> Copy() OVERRIDE; CefRefPtr<CefListValue> Copy() override;
bool SetSize(size_t size) OVERRIDE; bool SetSize(size_t size) override;
size_t GetSize() OVERRIDE; size_t GetSize() override;
bool Clear() OVERRIDE; bool Clear() override;
bool Remove(size_t index) OVERRIDE; bool Remove(size_t index) override;
CefValueType GetType(size_t index) OVERRIDE; CefValueType GetType(size_t index) override;
CefRefPtr<CefValue> GetValue(size_t index) OVERRIDE; CefRefPtr<CefValue> GetValue(size_t index) override;
bool GetBool(size_t index) OVERRIDE; bool GetBool(size_t index) override;
int GetInt(size_t index) OVERRIDE; int GetInt(size_t index) override;
double GetDouble(size_t index) OVERRIDE; double GetDouble(size_t index) override;
CefString GetString(size_t index) OVERRIDE; CefString GetString(size_t index) override;
CefRefPtr<CefBinaryValue> GetBinary(size_t index) OVERRIDE; CefRefPtr<CefBinaryValue> GetBinary(size_t index) override;
CefRefPtr<CefDictionaryValue> GetDictionary(size_t index) OVERRIDE; CefRefPtr<CefDictionaryValue> GetDictionary(size_t index) override;
CefRefPtr<CefListValue> GetList(size_t index) OVERRIDE; CefRefPtr<CefListValue> GetList(size_t index) override;
bool SetValue(size_t index, CefRefPtr<CefValue> value) OVERRIDE; bool SetValue(size_t index, CefRefPtr<CefValue> value) override;
bool SetNull(size_t index) OVERRIDE; bool SetNull(size_t index) override;
bool SetBool(size_t index, bool value) OVERRIDE; bool SetBool(size_t index, bool value) override;
bool SetInt(size_t index, int value) OVERRIDE; bool SetInt(size_t index, int value) override;
bool SetDouble(size_t index, double value) OVERRIDE; bool SetDouble(size_t index, double value) override;
bool SetString(size_t index, const CefString& value) OVERRIDE; bool SetString(size_t index, const CefString& value) override;
bool SetBinary(size_t index, CefRefPtr<CefBinaryValue> value) OVERRIDE; bool SetBinary(size_t index, CefRefPtr<CefBinaryValue> value) override;
bool SetDictionary(size_t index, bool SetDictionary(size_t index,
CefRefPtr<CefDictionaryValue> value) OVERRIDE; CefRefPtr<CefDictionaryValue> value) override;
bool SetList(size_t index, CefRefPtr<CefListValue> value) OVERRIDE; bool SetList(size_t index, CefRefPtr<CefListValue> value) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_LIST_VALUE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_LIST_VALUE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=2332af38a85b938ce097ee671f957fa20622004e$ // $hash=d09579b361d57b35a9e1a4db01fa783a08aa69af$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_MEDIA_ROUTE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_MEDIA_ROUTE_CTOCPP_H_
@ -34,11 +34,11 @@ class CefMediaRouteCToCpp : public CefCToCppRefCounted<CefMediaRouteCToCpp,
virtual ~CefMediaRouteCToCpp(); virtual ~CefMediaRouteCToCpp();
// CefMediaRoute methods. // CefMediaRoute methods.
CefString GetId() OVERRIDE; CefString GetId() override;
CefRefPtr<CefMediaSource> GetSource() OVERRIDE; CefRefPtr<CefMediaSource> GetSource() override;
CefRefPtr<CefMediaSink> GetSink() OVERRIDE; CefRefPtr<CefMediaSink> GetSink() override;
void SendRouteMessage(const void* message, size_t message_size) OVERRIDE; void SendRouteMessage(const void* message, size_t message_size) override;
void Terminate() OVERRIDE; void Terminate() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_MEDIA_ROUTE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_MEDIA_ROUTE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=f17d39aa48d464eddc04143796492dd36563f773$ // $hash=5c27e169e908799d879f108e14f7857a2a54d15e$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_MEDIA_ROUTER_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_MEDIA_ROUTER_CTOCPP_H_
@ -35,13 +35,13 @@ class CefMediaRouterCToCpp : public CefCToCppRefCounted<CefMediaRouterCToCpp,
// CefMediaRouter methods. // CefMediaRouter methods.
CefRefPtr<CefRegistration> AddObserver( CefRefPtr<CefRegistration> AddObserver(
CefRefPtr<CefMediaObserver> observer) OVERRIDE; CefRefPtr<CefMediaObserver> observer) override;
CefRefPtr<CefMediaSource> GetSource(const CefString& urn) OVERRIDE; CefRefPtr<CefMediaSource> GetSource(const CefString& urn) override;
void NotifyCurrentSinks() OVERRIDE; void NotifyCurrentSinks() override;
void CreateRoute(CefRefPtr<CefMediaSource> source, void CreateRoute(CefRefPtr<CefMediaSource> source,
CefRefPtr<CefMediaSink> sink, CefRefPtr<CefMediaSink> sink,
CefRefPtr<CefMediaRouteCreateCallback> callback) OVERRIDE; CefRefPtr<CefMediaRouteCreateCallback> callback) override;
void NotifyCurrentRoutes() OVERRIDE; void NotifyCurrentRoutes() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_MEDIA_ROUTER_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_MEDIA_ROUTER_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=cd0189f46038a0f941bfd592127ce29866257b40$ // $hash=8eaed0b915f9e9c2ec6b83705c05de88abfa4225$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_MEDIA_SINK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_MEDIA_SINK_CTOCPP_H_
@ -34,15 +34,15 @@ class CefMediaSinkCToCpp : public CefCToCppRefCounted<CefMediaSinkCToCpp,
virtual ~CefMediaSinkCToCpp(); virtual ~CefMediaSinkCToCpp();
// CefMediaSink methods. // CefMediaSink methods.
CefString GetId() OVERRIDE; CefString GetId() override;
CefString GetName() OVERRIDE; CefString GetName() override;
CefString GetDescription() OVERRIDE; CefString GetDescription() override;
IconType GetIconType() OVERRIDE; IconType GetIconType() override;
void GetDeviceInfo( void GetDeviceInfo(
CefRefPtr<CefMediaSinkDeviceInfoCallback> callback) OVERRIDE; CefRefPtr<CefMediaSinkDeviceInfoCallback> callback) override;
bool IsCastSink() OVERRIDE; bool IsCastSink() override;
bool IsDialSink() OVERRIDE; bool IsDialSink() override;
bool IsCompatibleWith(CefRefPtr<CefMediaSource> source) OVERRIDE; bool IsCompatibleWith(CefRefPtr<CefMediaSource> source) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_MEDIA_SINK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_MEDIA_SINK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=0f4a7c8d49d309dfcd2bbb739d0497c9e805678b$ // $hash=004e00a9ab65a362343bd3df93bc6f32b6445611$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_MEDIA_SOURCE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_MEDIA_SOURCE_CTOCPP_H_
@ -34,9 +34,9 @@ class CefMediaSourceCToCpp : public CefCToCppRefCounted<CefMediaSourceCToCpp,
virtual ~CefMediaSourceCToCpp(); virtual ~CefMediaSourceCToCpp();
// CefMediaSource methods. // CefMediaSource methods.
CefString GetId() OVERRIDE; CefString GetId() override;
bool IsCastSource() OVERRIDE; bool IsCastSource() override;
bool IsDialSource() OVERRIDE; bool IsDialSource() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_MEDIA_SOURCE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_MEDIA_SOURCE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=46e412e9d4ce0d6af2b3c065e731b73e93d885d4$ // $hash=cb3c98856aa7c877304947c5c41818ac8bc6cec4$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_MENU_MODEL_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_MENU_MODEL_CTOCPP_H_
@ -34,96 +34,96 @@ class CefMenuModelCToCpp : public CefCToCppRefCounted<CefMenuModelCToCpp,
virtual ~CefMenuModelCToCpp(); virtual ~CefMenuModelCToCpp();
// CefMenuModel methods. // CefMenuModel methods.
bool IsSubMenu() OVERRIDE; bool IsSubMenu() override;
bool Clear() OVERRIDE; bool Clear() override;
int GetCount() OVERRIDE; int GetCount() override;
bool AddSeparator() OVERRIDE; bool AddSeparator() override;
bool AddItem(int command_id, const CefString& label) OVERRIDE; bool AddItem(int command_id, const CefString& label) override;
bool AddCheckItem(int command_id, const CefString& label) OVERRIDE; bool AddCheckItem(int command_id, const CefString& label) override;
bool AddRadioItem(int command_id, bool AddRadioItem(int command_id,
const CefString& label, const CefString& label,
int group_id) OVERRIDE; int group_id) override;
CefRefPtr<CefMenuModel> AddSubMenu(int command_id, CefRefPtr<CefMenuModel> AddSubMenu(int command_id,
const CefString& label) OVERRIDE; const CefString& label) override;
bool InsertSeparatorAt(int index) OVERRIDE; bool InsertSeparatorAt(int index) override;
bool InsertItemAt(int index, int command_id, const CefString& label) OVERRIDE; bool InsertItemAt(int index, int command_id, const CefString& label) override;
bool InsertCheckItemAt(int index, bool InsertCheckItemAt(int index,
int command_id, int command_id,
const CefString& label) OVERRIDE; const CefString& label) override;
bool InsertRadioItemAt(int index, bool InsertRadioItemAt(int index,
int command_id, int command_id,
const CefString& label, const CefString& label,
int group_id) OVERRIDE; int group_id) override;
CefRefPtr<CefMenuModel> InsertSubMenuAt(int index, CefRefPtr<CefMenuModel> InsertSubMenuAt(int index,
int command_id, int command_id,
const CefString& label) OVERRIDE; const CefString& label) override;
bool Remove(int command_id) OVERRIDE; bool Remove(int command_id) override;
bool RemoveAt(int index) OVERRIDE; bool RemoveAt(int index) override;
int GetIndexOf(int command_id) OVERRIDE; int GetIndexOf(int command_id) override;
int GetCommandIdAt(int index) OVERRIDE; int GetCommandIdAt(int index) override;
bool SetCommandIdAt(int index, int command_id) OVERRIDE; bool SetCommandIdAt(int index, int command_id) override;
CefString GetLabel(int command_id) OVERRIDE; CefString GetLabel(int command_id) override;
CefString GetLabelAt(int index) OVERRIDE; CefString GetLabelAt(int index) override;
bool SetLabel(int command_id, const CefString& label) OVERRIDE; bool SetLabel(int command_id, const CefString& label) override;
bool SetLabelAt(int index, const CefString& label) OVERRIDE; bool SetLabelAt(int index, const CefString& label) override;
MenuItemType GetType(int command_id) OVERRIDE; MenuItemType GetType(int command_id) override;
MenuItemType GetTypeAt(int index) OVERRIDE; MenuItemType GetTypeAt(int index) override;
int GetGroupId(int command_id) OVERRIDE; int GetGroupId(int command_id) override;
int GetGroupIdAt(int index) OVERRIDE; int GetGroupIdAt(int index) override;
bool SetGroupId(int command_id, int group_id) OVERRIDE; bool SetGroupId(int command_id, int group_id) override;
bool SetGroupIdAt(int index, int group_id) OVERRIDE; bool SetGroupIdAt(int index, int group_id) override;
CefRefPtr<CefMenuModel> GetSubMenu(int command_id) OVERRIDE; CefRefPtr<CefMenuModel> GetSubMenu(int command_id) override;
CefRefPtr<CefMenuModel> GetSubMenuAt(int index) OVERRIDE; CefRefPtr<CefMenuModel> GetSubMenuAt(int index) override;
bool IsVisible(int command_id) OVERRIDE; bool IsVisible(int command_id) override;
bool IsVisibleAt(int index) OVERRIDE; bool IsVisibleAt(int index) override;
bool SetVisible(int command_id, bool visible) OVERRIDE; bool SetVisible(int command_id, bool visible) override;
bool SetVisibleAt(int index, bool visible) OVERRIDE; bool SetVisibleAt(int index, bool visible) override;
bool IsEnabled(int command_id) OVERRIDE; bool IsEnabled(int command_id) override;
bool IsEnabledAt(int index) OVERRIDE; bool IsEnabledAt(int index) override;
bool SetEnabled(int command_id, bool enabled) OVERRIDE; bool SetEnabled(int command_id, bool enabled) override;
bool SetEnabledAt(int index, bool enabled) OVERRIDE; bool SetEnabledAt(int index, bool enabled) override;
bool IsChecked(int command_id) OVERRIDE; bool IsChecked(int command_id) override;
bool IsCheckedAt(int index) OVERRIDE; bool IsCheckedAt(int index) override;
bool SetChecked(int command_id, bool checked) OVERRIDE; bool SetChecked(int command_id, bool checked) override;
bool SetCheckedAt(int index, bool checked) OVERRIDE; bool SetCheckedAt(int index, bool checked) override;
bool HasAccelerator(int command_id) OVERRIDE; bool HasAccelerator(int command_id) override;
bool HasAcceleratorAt(int index) OVERRIDE; bool HasAcceleratorAt(int index) override;
bool SetAccelerator(int command_id, bool SetAccelerator(int command_id,
int key_code, int key_code,
bool shift_pressed, bool shift_pressed,
bool ctrl_pressed, bool ctrl_pressed,
bool alt_pressed) OVERRIDE; bool alt_pressed) override;
bool SetAcceleratorAt(int index, bool SetAcceleratorAt(int index,
int key_code, int key_code,
bool shift_pressed, bool shift_pressed,
bool ctrl_pressed, bool ctrl_pressed,
bool alt_pressed) OVERRIDE; bool alt_pressed) override;
bool RemoveAccelerator(int command_id) OVERRIDE; bool RemoveAccelerator(int command_id) override;
bool RemoveAcceleratorAt(int index) OVERRIDE; bool RemoveAcceleratorAt(int index) override;
bool GetAccelerator(int command_id, bool GetAccelerator(int command_id,
int& key_code, int& key_code,
bool& shift_pressed, bool& shift_pressed,
bool& ctrl_pressed, bool& ctrl_pressed,
bool& alt_pressed) OVERRIDE; bool& alt_pressed) override;
bool GetAcceleratorAt(int index, bool GetAcceleratorAt(int index,
int& key_code, int& key_code,
bool& shift_pressed, bool& shift_pressed,
bool& ctrl_pressed, bool& ctrl_pressed,
bool& alt_pressed) OVERRIDE; bool& alt_pressed) override;
bool SetColor(int command_id, bool SetColor(int command_id,
cef_menu_color_type_t color_type, cef_menu_color_type_t color_type,
cef_color_t color) OVERRIDE; cef_color_t color) override;
bool SetColorAt(int index, bool SetColorAt(int index,
cef_menu_color_type_t color_type, cef_menu_color_type_t color_type,
cef_color_t color) OVERRIDE; cef_color_t color) override;
bool GetColor(int command_id, bool GetColor(int command_id,
cef_menu_color_type_t color_type, cef_menu_color_type_t color_type,
cef_color_t& color) OVERRIDE; cef_color_t& color) override;
bool GetColorAt(int index, bool GetColorAt(int index,
cef_menu_color_type_t color_type, cef_menu_color_type_t color_type,
cef_color_t& color) OVERRIDE; cef_color_t& color) override;
bool SetFontList(int command_id, const CefString& font_list) OVERRIDE; bool SetFontList(int command_id, const CefString& font_list) override;
bool SetFontListAt(int index, const CefString& font_list) OVERRIDE; bool SetFontListAt(int index, const CefString& font_list) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_MENU_MODEL_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_MENU_MODEL_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=990d05c70f40b68b043cac0ad1e13f7004864bbe$ // $hash=fee097f9fbb21c7c94a7286f0e3adf1ddc0f0a69$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_NAVIGATION_ENTRY_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_NAVIGATION_ENTRY_CTOCPP_H_
@ -35,16 +35,16 @@ class CefNavigationEntryCToCpp
virtual ~CefNavigationEntryCToCpp(); virtual ~CefNavigationEntryCToCpp();
// CefNavigationEntry methods. // CefNavigationEntry methods.
bool IsValid() OVERRIDE; bool IsValid() override;
CefString GetURL() OVERRIDE; CefString GetURL() override;
CefString GetDisplayURL() OVERRIDE; CefString GetDisplayURL() override;
CefString GetOriginalURL() OVERRIDE; CefString GetOriginalURL() override;
CefString GetTitle() OVERRIDE; CefString GetTitle() override;
TransitionType GetTransitionType() OVERRIDE; TransitionType GetTransitionType() override;
bool HasPostData() OVERRIDE; bool HasPostData() override;
CefTime GetCompletionTime() OVERRIDE; CefTime GetCompletionTime() override;
int GetHttpStatusCode() OVERRIDE; int GetHttpStatusCode() override;
CefRefPtr<CefSSLStatus> GetSSLStatus() OVERRIDE; CefRefPtr<CefSSLStatus> GetSSLStatus() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_NAVIGATION_ENTRY_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_NAVIGATION_ENTRY_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=4f27c0931e83f3f5b140eaeeffaf976dd751b1d2$ // $hash=cfac126645b325004b278b70c2f305312346d6ae$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_POST_DATA_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_POST_DATA_CTOCPP_H_
@ -34,13 +34,13 @@ class CefPostDataCToCpp : public CefCToCppRefCounted<CefPostDataCToCpp,
virtual ~CefPostDataCToCpp(); virtual ~CefPostDataCToCpp();
// CefPostData methods. // CefPostData methods.
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
bool HasExcludedElements() OVERRIDE; bool HasExcludedElements() override;
size_t GetElementCount() OVERRIDE; size_t GetElementCount() override;
void GetElements(ElementVector& elements) OVERRIDE; void GetElements(ElementVector& elements) override;
bool RemoveElement(CefRefPtr<CefPostDataElement> element) OVERRIDE; bool RemoveElement(CefRefPtr<CefPostDataElement> element) override;
bool AddElement(CefRefPtr<CefPostDataElement> element) OVERRIDE; bool AddElement(CefRefPtr<CefPostDataElement> element) override;
void RemoveElements() OVERRIDE; void RemoveElements() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_POST_DATA_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_POST_DATA_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=6ba7cc0530f7160b93a18d692512755b3fcb633b$ // $hash=6eefcf95c6655b2d3eb81c506fd60b423876e254$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_POST_DATA_ELEMENT_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_POST_DATA_ELEMENT_CTOCPP_H_
@ -35,14 +35,14 @@ class CefPostDataElementCToCpp
virtual ~CefPostDataElementCToCpp(); virtual ~CefPostDataElementCToCpp();
// CefPostDataElement methods. // CefPostDataElement methods.
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
void SetToEmpty() OVERRIDE; void SetToEmpty() override;
void SetToFile(const CefString& fileName) OVERRIDE; void SetToFile(const CefString& fileName) override;
void SetToBytes(size_t size, const void* bytes) OVERRIDE; void SetToBytes(size_t size, const void* bytes) override;
Type GetType() OVERRIDE; Type GetType() override;
CefString GetFile() OVERRIDE; CefString GetFile() override;
size_t GetBytesCount() OVERRIDE; size_t GetBytesCount() override;
size_t GetBytes(size_t size, void* bytes) OVERRIDE; size_t GetBytes(size_t size, void* bytes) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_POST_DATA_ELEMENT_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_POST_DATA_ELEMENT_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=991c4e5902ba3fc4de818d4d124dccb10dfb5d52$ // $hash=d1d4c09997abad1508d0815178a731f57c297320$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_PRINT_DIALOG_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_PRINT_DIALOG_CALLBACK_CTOCPP_H_
@ -35,8 +35,8 @@ class CefPrintDialogCallbackCToCpp
virtual ~CefPrintDialogCallbackCToCpp(); virtual ~CefPrintDialogCallbackCToCpp();
// CefPrintDialogCallback methods. // CefPrintDialogCallback methods.
void Continue(CefRefPtr<CefPrintSettings> settings) OVERRIDE; void Continue(CefRefPtr<CefPrintSettings> settings) override;
void Cancel() OVERRIDE; void Cancel() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_PRINT_DIALOG_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_PRINT_DIALOG_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=0c54d50effa8f690b879fd6ba0cdc1b3221c1cf5$ // $hash=b4a040a4be651d7b8522b328d37b3baf78a67e58$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_PRINT_JOB_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_PRINT_JOB_CALLBACK_CTOCPP_H_
@ -35,7 +35,7 @@ class CefPrintJobCallbackCToCpp
virtual ~CefPrintJobCallbackCToCpp(); virtual ~CefPrintJobCallbackCToCpp();
// CefPrintJobCallback methods. // CefPrintJobCallback methods.
void Continue() OVERRIDE; void Continue() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_PRINT_JOB_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_PRINT_JOB_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=9e906ae27be45f6d7996a566cf6d43060dd87069$ // $hash=599e0ac144ea555cf4eb8ec81651fb99c07dc0f1$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_PRINT_SETTINGS_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_PRINT_SETTINGS_CTOCPP_H_
@ -35,30 +35,30 @@ class CefPrintSettingsCToCpp
virtual ~CefPrintSettingsCToCpp(); virtual ~CefPrintSettingsCToCpp();
// CefPrintSettings methods. // CefPrintSettings methods.
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
void SetOrientation(bool landscape) OVERRIDE; void SetOrientation(bool landscape) override;
bool IsLandscape() OVERRIDE; bool IsLandscape() override;
void SetPrinterPrintableArea(const CefSize& physical_size_device_units, void SetPrinterPrintableArea(const CefSize& physical_size_device_units,
const CefRect& printable_area_device_units, const CefRect& printable_area_device_units,
bool landscape_needs_flip) OVERRIDE; bool landscape_needs_flip) override;
void SetDeviceName(const CefString& name) OVERRIDE; void SetDeviceName(const CefString& name) override;
CefString GetDeviceName() OVERRIDE; CefString GetDeviceName() override;
void SetDPI(int dpi) OVERRIDE; void SetDPI(int dpi) override;
int GetDPI() OVERRIDE; int GetDPI() override;
void SetPageRanges(const PageRangeList& ranges) OVERRIDE; void SetPageRanges(const PageRangeList& ranges) override;
size_t GetPageRangesCount() OVERRIDE; size_t GetPageRangesCount() override;
void GetPageRanges(PageRangeList& ranges) OVERRIDE; void GetPageRanges(PageRangeList& ranges) override;
void SetSelectionOnly(bool selection_only) OVERRIDE; void SetSelectionOnly(bool selection_only) override;
bool IsSelectionOnly() OVERRIDE; bool IsSelectionOnly() override;
void SetCollate(bool collate) OVERRIDE; void SetCollate(bool collate) override;
bool WillCollate() OVERRIDE; bool WillCollate() override;
void SetColorModel(ColorModel model) OVERRIDE; void SetColorModel(ColorModel model) override;
ColorModel GetColorModel() OVERRIDE; ColorModel GetColorModel() override;
void SetCopies(int copies) OVERRIDE; void SetCopies(int copies) override;
int GetCopies() OVERRIDE; int GetCopies() override;
void SetDuplexMode(DuplexMode mode) OVERRIDE; void SetDuplexMode(DuplexMode mode) override;
DuplexMode GetDuplexMode() OVERRIDE; DuplexMode GetDuplexMode() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_PRINT_SETTINGS_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_PRINT_SETTINGS_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=c6de5a60b4d438f164b9915b9adc1e1c319c0f53$ // $hash=590ed9ad60ffd03c62591b1dcae2d1c4d7603846$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_PROCESS_MESSAGE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_PROCESS_MESSAGE_CTOCPP_H_
@ -35,11 +35,11 @@ class CefProcessMessageCToCpp
virtual ~CefProcessMessageCToCpp(); virtual ~CefProcessMessageCToCpp();
// CefProcessMessage methods. // CefProcessMessage methods.
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
CefRefPtr<CefProcessMessage> Copy() OVERRIDE; CefRefPtr<CefProcessMessage> Copy() override;
CefString GetName() OVERRIDE; CefString GetName() override;
CefRefPtr<CefListValue> GetArgumentList() OVERRIDE; CefRefPtr<CefListValue> GetArgumentList() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_PROCESS_MESSAGE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_PROCESS_MESSAGE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=1ede257dfc48418e456f733bff7a062e8b841efe$ // $hash=49871b71a226d36c9c60ac06c2a242c106766d34$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_REQUEST_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_REQUEST_CALLBACK_CTOCPP_H_
@ -35,8 +35,8 @@ class CefRequestCallbackCToCpp
virtual ~CefRequestCallbackCToCpp(); virtual ~CefRequestCallbackCToCpp();
// CefRequestCallback methods. // CefRequestCallback methods.
void Continue(bool allow) OVERRIDE; void Continue(bool allow) override;
void Cancel() OVERRIDE; void Cancel() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_REQUEST_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_REQUEST_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=0aff81f2ccc5881001e9fd61cc6e349253fb2ac5$ // $hash=3e68482578ce8edfa73bef03a7f943194f3b7f34$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_
@ -40,43 +40,43 @@ class CefRequestContextCToCpp
virtual ~CefRequestContextCToCpp(); virtual ~CefRequestContextCToCpp();
// CefRequestContext methods. // CefRequestContext methods.
bool IsSame(CefRefPtr<CefRequestContext> other) OVERRIDE; bool IsSame(CefRefPtr<CefRequestContext> other) override;
bool IsSharingWith(CefRefPtr<CefRequestContext> other) OVERRIDE; bool IsSharingWith(CefRefPtr<CefRequestContext> other) override;
bool IsGlobal() OVERRIDE; bool IsGlobal() override;
CefRefPtr<CefRequestContextHandler> GetHandler() OVERRIDE; CefRefPtr<CefRequestContextHandler> GetHandler() override;
CefString GetCachePath() OVERRIDE; CefString GetCachePath() override;
CefRefPtr<CefCookieManager> GetCookieManager( CefRefPtr<CefCookieManager> GetCookieManager(
CefRefPtr<CefCompletionCallback> callback) OVERRIDE; CefRefPtr<CefCompletionCallback> callback) override;
bool RegisterSchemeHandlerFactory( bool RegisterSchemeHandlerFactory(
const CefString& scheme_name, const CefString& scheme_name,
const CefString& domain_name, const CefString& domain_name,
CefRefPtr<CefSchemeHandlerFactory> factory) OVERRIDE; CefRefPtr<CefSchemeHandlerFactory> factory) override;
bool ClearSchemeHandlerFactories() OVERRIDE; bool ClearSchemeHandlerFactories() override;
void PurgePluginListCache(bool reload_pages) OVERRIDE; void PurgePluginListCache(bool reload_pages) override;
bool HasPreference(const CefString& name) OVERRIDE; bool HasPreference(const CefString& name) override;
CefRefPtr<CefValue> GetPreference(const CefString& name) OVERRIDE; CefRefPtr<CefValue> GetPreference(const CefString& name) override;
CefRefPtr<CefDictionaryValue> GetAllPreferences( CefRefPtr<CefDictionaryValue> GetAllPreferences(
bool include_defaults) OVERRIDE; bool include_defaults) override;
bool CanSetPreference(const CefString& name) OVERRIDE; bool CanSetPreference(const CefString& name) override;
bool SetPreference(const CefString& name, bool SetPreference(const CefString& name,
CefRefPtr<CefValue> value, CefRefPtr<CefValue> value,
CefString& error) OVERRIDE; CefString& error) override;
void ClearCertificateExceptions( void ClearCertificateExceptions(
CefRefPtr<CefCompletionCallback> callback) OVERRIDE; CefRefPtr<CefCompletionCallback> callback) override;
void ClearHttpAuthCredentials( void ClearHttpAuthCredentials(
CefRefPtr<CefCompletionCallback> callback) OVERRIDE; CefRefPtr<CefCompletionCallback> callback) override;
void CloseAllConnections(CefRefPtr<CefCompletionCallback> callback) OVERRIDE; void CloseAllConnections(CefRefPtr<CefCompletionCallback> callback) override;
void ResolveHost(const CefString& origin, void ResolveHost(const CefString& origin,
CefRefPtr<CefResolveCallback> callback) OVERRIDE; CefRefPtr<CefResolveCallback> callback) override;
void LoadExtension(const CefString& root_directory, void LoadExtension(const CefString& root_directory,
CefRefPtr<CefDictionaryValue> manifest, CefRefPtr<CefDictionaryValue> manifest,
CefRefPtr<CefExtensionHandler> handler) OVERRIDE; CefRefPtr<CefExtensionHandler> handler) override;
bool DidLoadExtension(const CefString& extension_id) OVERRIDE; bool DidLoadExtension(const CefString& extension_id) override;
bool HasExtension(const CefString& extension_id) OVERRIDE; bool HasExtension(const CefString& extension_id) override;
bool GetExtensions(std::vector<CefString>& extension_ids) OVERRIDE; bool GetExtensions(std::vector<CefString>& extension_ids) override;
CefRefPtr<CefExtension> GetExtension(const CefString& extension_id) OVERRIDE; CefRefPtr<CefExtension> GetExtension(const CefString& extension_id) override;
CefRefPtr<CefMediaRouter> GetMediaRouter( CefRefPtr<CefMediaRouter> GetMediaRouter(
CefRefPtr<CefCompletionCallback> callback) OVERRIDE; CefRefPtr<CefCompletionCallback> callback) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=77fee821efba296de9f9c01aa42f77596fb381d1$ // $hash=c4051f19be6db04a41ea69d0ee95286ac5b85d20$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_REQUEST_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_REQUEST_CTOCPP_H_
@ -33,34 +33,34 @@ class CefRequestCToCpp
virtual ~CefRequestCToCpp(); virtual ~CefRequestCToCpp();
// CefRequest methods. // CefRequest methods.
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
CefString GetURL() OVERRIDE; CefString GetURL() override;
void SetURL(const CefString& url) OVERRIDE; void SetURL(const CefString& url) override;
CefString GetMethod() OVERRIDE; CefString GetMethod() override;
void SetMethod(const CefString& method) OVERRIDE; void SetMethod(const CefString& method) override;
void SetReferrer(const CefString& referrer_url, void SetReferrer(const CefString& referrer_url,
ReferrerPolicy policy) OVERRIDE; ReferrerPolicy policy) override;
CefString GetReferrerURL() OVERRIDE; CefString GetReferrerURL() override;
ReferrerPolicy GetReferrerPolicy() OVERRIDE; ReferrerPolicy GetReferrerPolicy() override;
CefRefPtr<CefPostData> GetPostData() OVERRIDE; CefRefPtr<CefPostData> GetPostData() override;
void SetPostData(CefRefPtr<CefPostData> postData) OVERRIDE; void SetPostData(CefRefPtr<CefPostData> postData) override;
void GetHeaderMap(HeaderMap& headerMap) OVERRIDE; void GetHeaderMap(HeaderMap& headerMap) override;
void SetHeaderMap(const HeaderMap& headerMap) OVERRIDE; void SetHeaderMap(const HeaderMap& headerMap) override;
CefString GetHeaderByName(const CefString& name) OVERRIDE; CefString GetHeaderByName(const CefString& name) override;
void SetHeaderByName(const CefString& name, void SetHeaderByName(const CefString& name,
const CefString& value, const CefString& value,
bool overwrite) OVERRIDE; bool overwrite) override;
void Set(const CefString& url, void Set(const CefString& url,
const CefString& method, const CefString& method,
CefRefPtr<CefPostData> postData, CefRefPtr<CefPostData> postData,
const HeaderMap& headerMap) OVERRIDE; const HeaderMap& headerMap) override;
int GetFlags() OVERRIDE; int GetFlags() override;
void SetFlags(int flags) OVERRIDE; void SetFlags(int flags) override;
CefString GetFirstPartyForCookies() OVERRIDE; CefString GetFirstPartyForCookies() override;
void SetFirstPartyForCookies(const CefString& url) OVERRIDE; void SetFirstPartyForCookies(const CefString& url) override;
ResourceType GetResourceType() OVERRIDE; ResourceType GetResourceType() override;
TransitionType GetTransitionType() OVERRIDE; TransitionType GetTransitionType() override;
uint64 GetIdentifier() OVERRIDE; uint64 GetIdentifier() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_REQUEST_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_REQUEST_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=00c386274cefb6ae461544f93cea6df7d2a6f367$ // $hash=69743695174bd4a3b85f3afc0b5ba9f0d4460e2f$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_RESOURCE_BUNDLE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_RESOURCE_BUNDLE_CTOCPP_H_
@ -35,11 +35,11 @@ class CefResourceBundleCToCpp
virtual ~CefResourceBundleCToCpp(); virtual ~CefResourceBundleCToCpp();
// CefResourceBundle methods. // CefResourceBundle methods.
CefString GetLocalizedString(int string_id) OVERRIDE; CefString GetLocalizedString(int string_id) override;
CefRefPtr<CefBinaryValue> GetDataResource(int resource_id) OVERRIDE; CefRefPtr<CefBinaryValue> GetDataResource(int resource_id) override;
CefRefPtr<CefBinaryValue> GetDataResourceForScale( CefRefPtr<CefBinaryValue> GetDataResourceForScale(
int resource_id, int resource_id,
ScaleFactor scale_factor) OVERRIDE; ScaleFactor scale_factor) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_RESOURCE_BUNDLE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_RESOURCE_BUNDLE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=1678dd45fdeac3cf3f0674138791fa2eb51f08e2$ // $hash=27ca93319fbbdc4a10ee8ff6643c710df5f00b30$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_RESOURCE_READ_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_RESOURCE_READ_CALLBACK_CTOCPP_H_
@ -35,7 +35,7 @@ class CefResourceReadCallbackCToCpp
virtual ~CefResourceReadCallbackCToCpp(); virtual ~CefResourceReadCallbackCToCpp();
// CefResourceReadCallback methods. // CefResourceReadCallback methods.
void Continue(int bytes_read) OVERRIDE; void Continue(int bytes_read) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_RESOURCE_READ_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_RESOURCE_READ_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=e5f6f5e49687972c21461aa8055a17aa73d9f5dc$ // $hash=a42a14c436bb2c32de18d7c5b9a1e3a5b76db0b3$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_RESOURCE_SKIP_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_RESOURCE_SKIP_CALLBACK_CTOCPP_H_
@ -35,7 +35,7 @@ class CefResourceSkipCallbackCToCpp
virtual ~CefResourceSkipCallbackCToCpp(); virtual ~CefResourceSkipCallbackCToCpp();
// CefResourceSkipCallback methods. // CefResourceSkipCallback methods.
void Continue(int64 bytes_skipped) OVERRIDE; void Continue(int64 bytes_skipped) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_RESOURCE_SKIP_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_RESOURCE_SKIP_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=82ca98c4f8fbbac643f826f882ae4e4efe80e821$ // $hash=cd564f3f21d61a5ce0e3ee3b0dbf8b192b860a30$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_RESPONSE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_RESPONSE_CTOCPP_H_
@ -34,25 +34,25 @@ class CefResponseCToCpp : public CefCToCppRefCounted<CefResponseCToCpp,
virtual ~CefResponseCToCpp(); virtual ~CefResponseCToCpp();
// CefResponse methods. // CefResponse methods.
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
cef_errorcode_t GetError() OVERRIDE; cef_errorcode_t GetError() override;
void SetError(cef_errorcode_t error) OVERRIDE; void SetError(cef_errorcode_t error) override;
int GetStatus() OVERRIDE; int GetStatus() override;
void SetStatus(int status) OVERRIDE; void SetStatus(int status) override;
CefString GetStatusText() OVERRIDE; CefString GetStatusText() override;
void SetStatusText(const CefString& statusText) OVERRIDE; void SetStatusText(const CefString& statusText) override;
CefString GetMimeType() OVERRIDE; CefString GetMimeType() override;
void SetMimeType(const CefString& mimeType) OVERRIDE; void SetMimeType(const CefString& mimeType) override;
CefString GetCharset() OVERRIDE; CefString GetCharset() override;
void SetCharset(const CefString& charset) OVERRIDE; void SetCharset(const CefString& charset) override;
CefString GetHeaderByName(const CefString& name) OVERRIDE; CefString GetHeaderByName(const CefString& name) override;
void SetHeaderByName(const CefString& name, void SetHeaderByName(const CefString& name,
const CefString& value, const CefString& value,
bool overwrite) OVERRIDE; bool overwrite) override;
void GetHeaderMap(HeaderMap& headerMap) OVERRIDE; void GetHeaderMap(HeaderMap& headerMap) override;
void SetHeaderMap(const HeaderMap& headerMap) OVERRIDE; void SetHeaderMap(const HeaderMap& headerMap) override;
CefString GetURL() OVERRIDE; CefString GetURL() override;
void SetURL(const CefString& url) OVERRIDE; void SetURL(const CefString& url) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_RESPONSE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_RESPONSE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=15e8c2e8426ce3f7ea6662aa7dc1a51bf541a3d2$ // $hash=996803cc8b9f473a948065f87f69088844aad291$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_RUN_CONTEXT_MENU_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_RUN_CONTEXT_MENU_CALLBACK_CTOCPP_H_
@ -35,8 +35,8 @@ class CefRunContextMenuCallbackCToCpp
virtual ~CefRunContextMenuCallbackCToCpp(); virtual ~CefRunContextMenuCallbackCToCpp();
// CefRunContextMenuCallback methods. // CefRunContextMenuCallback methods.
void Continue(int command_id, EventFlags event_flags) OVERRIDE; void Continue(int command_id, EventFlags event_flags) override;
void Cancel() OVERRIDE; void Cancel() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_RUN_CONTEXT_MENU_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_RUN_CONTEXT_MENU_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=ca1012f1234d42169d2f513c39f05866cdc24f02$ // $hash=fe59dade993ec9725d0145c56d5c5c819e51f25e$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_SCHEME_REGISTRAR_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_SCHEME_REGISTRAR_CTOCPP_H_
@ -35,7 +35,7 @@ class CefSchemeRegistrarCToCpp
virtual ~CefSchemeRegistrarCToCpp(); virtual ~CefSchemeRegistrarCToCpp();
// CefSchemeRegistrar methods. // CefSchemeRegistrar methods.
bool AddCustomScheme(const CefString& scheme_name, int options) OVERRIDE; bool AddCustomScheme(const CefString& scheme_name, int options) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_SCHEME_REGISTRAR_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_SCHEME_REGISTRAR_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=868c4d33bd4776ca5f2044d2707f2a78f16bd074$ // $hash=b7a7db875552563fc36a922f280f61611284ad6c$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_SELECT_CLIENT_CERTIFICATE_CALLBACK_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_SELECT_CLIENT_CERTIFICATE_CALLBACK_CTOCPP_H_
@ -35,7 +35,7 @@ class CefSelectClientCertificateCallbackCToCpp
virtual ~CefSelectClientCertificateCallbackCToCpp(); virtual ~CefSelectClientCertificateCallbackCToCpp();
// CefSelectClientCertificateCallback methods. // CefSelectClientCertificateCallback methods.
void Select(CefRefPtr<CefX509Certificate> cert) OVERRIDE; void Select(CefRefPtr<CefX509Certificate> cert) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_SELECT_CLIENT_CERTIFICATE_CALLBACK_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_SELECT_CLIENT_CERTIFICATE_CALLBACK_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=0e1ecc65bf21127a32292fe7e84378bacbf649ed$ // $hash=4db8632a3ac7ba81921e32dd92f5c81e30b4c959$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_SERVER_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_SERVER_CTOCPP_H_
@ -33,31 +33,31 @@ class CefServerCToCpp
virtual ~CefServerCToCpp(); virtual ~CefServerCToCpp();
// CefServer methods. // CefServer methods.
CefRefPtr<CefTaskRunner> GetTaskRunner() OVERRIDE; CefRefPtr<CefTaskRunner> GetTaskRunner() override;
void Shutdown() OVERRIDE; void Shutdown() override;
bool IsRunning() OVERRIDE; bool IsRunning() override;
CefString GetAddress() OVERRIDE; CefString GetAddress() override;
bool HasConnection() OVERRIDE; bool HasConnection() override;
bool IsValidConnection(int connection_id) OVERRIDE; bool IsValidConnection(int connection_id) override;
void SendHttp200Response(int connection_id, void SendHttp200Response(int connection_id,
const CefString& content_type, const CefString& content_type,
const void* data, const void* data,
size_t data_size) OVERRIDE; size_t data_size) override;
void SendHttp404Response(int connection_id) OVERRIDE; void SendHttp404Response(int connection_id) override;
void SendHttp500Response(int connection_id, void SendHttp500Response(int connection_id,
const CefString& error_message) OVERRIDE; const CefString& error_message) override;
void SendHttpResponse(int connection_id, void SendHttpResponse(int connection_id,
int response_code, int response_code,
const CefString& content_type, const CefString& content_type,
int64 content_length, int64 content_length,
const HeaderMap& extra_headers) OVERRIDE; const HeaderMap& extra_headers) override;
void SendRawData(int connection_id, void SendRawData(int connection_id,
const void* data, const void* data,
size_t data_size) OVERRIDE; size_t data_size) override;
void CloseConnection(int connection_id) OVERRIDE; void CloseConnection(int connection_id) override;
void SendWebSocketMessage(int connection_id, void SendWebSocketMessage(int connection_id,
const void* data, const void* data,
size_t data_size) OVERRIDE; size_t data_size) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_SERVER_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_SERVER_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=ce3dfac0c94806a0e33ba0783482c3c3f2dada1c$ // $hash=390ce86c2295d2714c06379183d4d3ef458dba77$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_SSLINFO_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_SSLINFO_CTOCPP_H_
@ -33,8 +33,8 @@ class CefSSLInfoCToCpp
virtual ~CefSSLInfoCToCpp(); virtual ~CefSSLInfoCToCpp();
// CefSSLInfo methods. // CefSSLInfo methods.
cef_cert_status_t GetCertStatus() OVERRIDE; cef_cert_status_t GetCertStatus() override;
CefRefPtr<CefX509Certificate> GetX509Certificate() OVERRIDE; CefRefPtr<CefX509Certificate> GetX509Certificate() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_SSLINFO_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_SSLINFO_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=a3876890dd91d430af51c1f0ce639e8449453bc3$ // $hash=4455818cc5cea47d69ccc7656f04aa39c9fc60e5$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_SSLSTATUS_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_SSLSTATUS_CTOCPP_H_
@ -34,11 +34,11 @@ class CefSSLStatusCToCpp : public CefCToCppRefCounted<CefSSLStatusCToCpp,
virtual ~CefSSLStatusCToCpp(); virtual ~CefSSLStatusCToCpp();
// CefSSLStatus methods. // CefSSLStatus methods.
bool IsSecureConnection() OVERRIDE; bool IsSecureConnection() override;
cef_cert_status_t GetCertStatus() OVERRIDE; cef_cert_status_t GetCertStatus() override;
cef_ssl_version_t GetSSLVersion() OVERRIDE; cef_ssl_version_t GetSSLVersion() override;
cef_ssl_content_status_t GetContentStatus() OVERRIDE; cef_ssl_content_status_t GetContentStatus() override;
CefRefPtr<CefX509Certificate> GetX509Certificate() OVERRIDE; CefRefPtr<CefX509Certificate> GetX509Certificate() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_SSLSTATUS_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_SSLSTATUS_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=9e52f14c3559e2cc88c422105b9cea12a5be65b9$ // $hash=47cc685d94d5bdf4f4925d1332668244198f2ff1$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_STREAM_READER_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_STREAM_READER_CTOCPP_H_
@ -34,11 +34,11 @@ class CefStreamReaderCToCpp : public CefCToCppRefCounted<CefStreamReaderCToCpp,
virtual ~CefStreamReaderCToCpp(); virtual ~CefStreamReaderCToCpp();
// CefStreamReader methods. // CefStreamReader methods.
size_t Read(void* ptr, size_t size, size_t n) OVERRIDE; size_t Read(void* ptr, size_t size, size_t n) override;
int Seek(int64 offset, int whence) OVERRIDE; int Seek(int64 offset, int whence) override;
int64 Tell() OVERRIDE; int64 Tell() override;
int Eof() OVERRIDE; int Eof() override;
bool MayBlock() OVERRIDE; bool MayBlock() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_STREAM_READER_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_STREAM_READER_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=35633443453d19b5089b4bfa493b42f1497064f6$ // $hash=4e51d8cabcd9b88273b299afba7094563be1c0ab$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_STREAM_WRITER_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_STREAM_WRITER_CTOCPP_H_
@ -34,11 +34,11 @@ class CefStreamWriterCToCpp : public CefCToCppRefCounted<CefStreamWriterCToCpp,
virtual ~CefStreamWriterCToCpp(); virtual ~CefStreamWriterCToCpp();
// CefStreamWriter methods. // CefStreamWriter methods.
size_t Write(const void* ptr, size_t size, size_t n) OVERRIDE; size_t Write(const void* ptr, size_t size, size_t n) override;
int Seek(int64 offset, int whence) OVERRIDE; int Seek(int64 offset, int whence) override;
int64 Tell() OVERRIDE; int64 Tell() override;
int Flush() OVERRIDE; int Flush() override;
bool MayBlock() OVERRIDE; bool MayBlock() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_STREAM_WRITER_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_STREAM_WRITER_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=2f61617ce59c2fe7ac1ad6f9944646ca712931cf$ // $hash=115a1d7fd22f24080778777f9e656fd17cceafbc$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_TASK_RUNNER_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_TASK_RUNNER_CTOCPP_H_
@ -34,11 +34,11 @@ class CefTaskRunnerCToCpp : public CefCToCppRefCounted<CefTaskRunnerCToCpp,
virtual ~CefTaskRunnerCToCpp(); virtual ~CefTaskRunnerCToCpp();
// CefTaskRunner methods. // CefTaskRunner methods.
bool IsSame(CefRefPtr<CefTaskRunner> that) OVERRIDE; bool IsSame(CefRefPtr<CefTaskRunner> that) override;
bool BelongsToCurrentThread() OVERRIDE; bool BelongsToCurrentThread() override;
bool BelongsToThread(CefThreadId threadId) OVERRIDE; bool BelongsToThread(CefThreadId threadId) override;
bool PostTask(CefRefPtr<CefTask> task) OVERRIDE; bool PostTask(CefRefPtr<CefTask> task) override;
bool PostDelayedTask(CefRefPtr<CefTask> task, int64 delay_ms) OVERRIDE; bool PostDelayedTask(CefRefPtr<CefTask> task, int64 delay_ms) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_TASK_RUNNER_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_TASK_RUNNER_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=db05a06c80f30f0d25b2eec12b50bbf0310e36fb$ // $hash=8c8f88e63e66da894c41c1aa5de7eb6af7b3abd8$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_CTOCPP_H_
@ -37,100 +37,100 @@ class CefTranslatorTestCToCpp
virtual ~CefTranslatorTestCToCpp(); virtual ~CefTranslatorTestCToCpp();
// CefTranslatorTest methods. // CefTranslatorTest methods.
void GetVoid() OVERRIDE; void GetVoid() override;
bool GetBool() OVERRIDE; bool GetBool() override;
int GetInt() OVERRIDE; int GetInt() override;
double GetDouble() OVERRIDE; double GetDouble() override;
long GetLong() OVERRIDE; long GetLong() override;
size_t GetSizet() OVERRIDE; size_t GetSizet() override;
bool SetVoid() OVERRIDE; bool SetVoid() override;
bool SetBool(bool val) OVERRIDE; bool SetBool(bool val) override;
bool SetInt(int val) OVERRIDE; bool SetInt(int val) override;
bool SetDouble(double val) OVERRIDE; bool SetDouble(double val) override;
bool SetLong(long val) OVERRIDE; bool SetLong(long val) override;
bool SetSizet(size_t val) OVERRIDE; bool SetSizet(size_t val) override;
bool SetIntList(const std::vector<int>& val) OVERRIDE; bool SetIntList(const std::vector<int>& val) override;
bool GetIntListByRef(IntList& val) OVERRIDE; bool GetIntListByRef(IntList& val) override;
size_t GetIntListSize() OVERRIDE; size_t GetIntListSize() override;
CefString GetString() OVERRIDE; CefString GetString() override;
bool SetString(const CefString& val) OVERRIDE; bool SetString(const CefString& val) override;
void GetStringByRef(CefString& val) OVERRIDE; void GetStringByRef(CefString& val) override;
bool SetStringList(const std::vector<CefString>& val) OVERRIDE; bool SetStringList(const std::vector<CefString>& val) override;
bool GetStringListByRef(StringList& val) OVERRIDE; bool GetStringListByRef(StringList& val) override;
bool SetStringMap(const StringMap& val) OVERRIDE; bool SetStringMap(const StringMap& val) override;
bool GetStringMapByRef(std::map<CefString, CefString>& val) OVERRIDE; bool GetStringMapByRef(std::map<CefString, CefString>& val) override;
bool SetStringMultimap( bool SetStringMultimap(
const std::multimap<CefString, CefString>& val) OVERRIDE; const std::multimap<CefString, CefString>& val) override;
bool GetStringMultimapByRef(StringMultimap& val) OVERRIDE; bool GetStringMultimapByRef(StringMultimap& val) override;
CefPoint GetPoint() OVERRIDE; CefPoint GetPoint() override;
bool SetPoint(const CefPoint& val) OVERRIDE; bool SetPoint(const CefPoint& val) override;
void GetPointByRef(CefPoint& val) OVERRIDE; void GetPointByRef(CefPoint& val) override;
bool SetPointList(const std::vector<CefPoint>& val) OVERRIDE; bool SetPointList(const std::vector<CefPoint>& val) override;
bool GetPointListByRef(PointList& val) OVERRIDE; bool GetPointListByRef(PointList& val) override;
size_t GetPointListSize() OVERRIDE; size_t GetPointListSize() override;
CefRefPtr<CefTranslatorTestRefPtrLibrary> GetRefPtrLibrary(int val) OVERRIDE; CefRefPtr<CefTranslatorTestRefPtrLibrary> GetRefPtrLibrary(int val) override;
int SetRefPtrLibrary(CefRefPtr<CefTranslatorTestRefPtrLibrary> val) OVERRIDE; int SetRefPtrLibrary(CefRefPtr<CefTranslatorTestRefPtrLibrary> val) override;
CefRefPtr<CefTranslatorTestRefPtrLibrary> SetRefPtrLibraryAndReturn( CefRefPtr<CefTranslatorTestRefPtrLibrary> SetRefPtrLibraryAndReturn(
CefRefPtr<CefTranslatorTestRefPtrLibrary> val) OVERRIDE; CefRefPtr<CefTranslatorTestRefPtrLibrary> val) override;
int SetChildRefPtrLibrary( int SetChildRefPtrLibrary(
CefRefPtr<CefTranslatorTestRefPtrLibraryChild> val) OVERRIDE; CefRefPtr<CefTranslatorTestRefPtrLibraryChild> val) override;
CefRefPtr<CefTranslatorTestRefPtrLibrary> CefRefPtr<CefTranslatorTestRefPtrLibrary>
SetChildRefPtrLibraryAndReturnParent( SetChildRefPtrLibraryAndReturnParent(
CefRefPtr<CefTranslatorTestRefPtrLibraryChild> val) OVERRIDE; CefRefPtr<CefTranslatorTestRefPtrLibraryChild> val) override;
bool SetRefPtrLibraryList( bool SetRefPtrLibraryList(
const std::vector<CefRefPtr<CefTranslatorTestRefPtrLibrary>>& val, const std::vector<CefRefPtr<CefTranslatorTestRefPtrLibrary>>& val,
int val1, int val1,
int val2) OVERRIDE; int val2) override;
bool GetRefPtrLibraryListByRef(RefPtrLibraryList& val, bool GetRefPtrLibraryListByRef(RefPtrLibraryList& val,
int val1, int val1,
int val2) OVERRIDE; int val2) override;
size_t GetRefPtrLibraryListSize() OVERRIDE; size_t GetRefPtrLibraryListSize() override;
int SetRefPtrClient(CefRefPtr<CefTranslatorTestRefPtrClient> val) OVERRIDE; int SetRefPtrClient(CefRefPtr<CefTranslatorTestRefPtrClient> val) override;
CefRefPtr<CefTranslatorTestRefPtrClient> SetRefPtrClientAndReturn( CefRefPtr<CefTranslatorTestRefPtrClient> SetRefPtrClientAndReturn(
CefRefPtr<CefTranslatorTestRefPtrClient> val) OVERRIDE; CefRefPtr<CefTranslatorTestRefPtrClient> val) override;
int SetChildRefPtrClient( int SetChildRefPtrClient(
CefRefPtr<CefTranslatorTestRefPtrClientChild> val) OVERRIDE; CefRefPtr<CefTranslatorTestRefPtrClientChild> val) override;
CefRefPtr<CefTranslatorTestRefPtrClient> SetChildRefPtrClientAndReturnParent( CefRefPtr<CefTranslatorTestRefPtrClient> SetChildRefPtrClientAndReturnParent(
CefRefPtr<CefTranslatorTestRefPtrClientChild> val) OVERRIDE; CefRefPtr<CefTranslatorTestRefPtrClientChild> val) override;
bool SetRefPtrClientList( bool SetRefPtrClientList(
const std::vector<CefRefPtr<CefTranslatorTestRefPtrClient>>& val, const std::vector<CefRefPtr<CefTranslatorTestRefPtrClient>>& val,
int val1, int val1,
int val2) OVERRIDE; int val2) override;
bool GetRefPtrClientListByRef( bool GetRefPtrClientListByRef(
RefPtrClientList& val, RefPtrClientList& val,
CefRefPtr<CefTranslatorTestRefPtrClient> val1, CefRefPtr<CefTranslatorTestRefPtrClient> val1,
CefRefPtr<CefTranslatorTestRefPtrClient> val2) OVERRIDE; CefRefPtr<CefTranslatorTestRefPtrClient> val2) override;
size_t GetRefPtrClientListSize() OVERRIDE; size_t GetRefPtrClientListSize() override;
CefOwnPtr<CefTranslatorTestScopedLibrary> GetOwnPtrLibrary(int val) OVERRIDE; CefOwnPtr<CefTranslatorTestScopedLibrary> GetOwnPtrLibrary(int val) override;
int SetOwnPtrLibrary(CefOwnPtr<CefTranslatorTestScopedLibrary> val) OVERRIDE; int SetOwnPtrLibrary(CefOwnPtr<CefTranslatorTestScopedLibrary> val) override;
CefOwnPtr<CefTranslatorTestScopedLibrary> SetOwnPtrLibraryAndReturn( CefOwnPtr<CefTranslatorTestScopedLibrary> SetOwnPtrLibraryAndReturn(
CefOwnPtr<CefTranslatorTestScopedLibrary> val) OVERRIDE; CefOwnPtr<CefTranslatorTestScopedLibrary> val) override;
int SetChildOwnPtrLibrary( int SetChildOwnPtrLibrary(
CefOwnPtr<CefTranslatorTestScopedLibraryChild> val) OVERRIDE; CefOwnPtr<CefTranslatorTestScopedLibraryChild> val) override;
CefOwnPtr<CefTranslatorTestScopedLibrary> CefOwnPtr<CefTranslatorTestScopedLibrary>
SetChildOwnPtrLibraryAndReturnParent( SetChildOwnPtrLibraryAndReturnParent(
CefOwnPtr<CefTranslatorTestScopedLibraryChild> val) OVERRIDE; CefOwnPtr<CefTranslatorTestScopedLibraryChild> val) override;
int SetOwnPtrClient(CefOwnPtr<CefTranslatorTestScopedClient> val) OVERRIDE; int SetOwnPtrClient(CefOwnPtr<CefTranslatorTestScopedClient> val) override;
CefOwnPtr<CefTranslatorTestScopedClient> SetOwnPtrClientAndReturn( CefOwnPtr<CefTranslatorTestScopedClient> SetOwnPtrClientAndReturn(
CefOwnPtr<CefTranslatorTestScopedClient> val) OVERRIDE; CefOwnPtr<CefTranslatorTestScopedClient> val) override;
int SetChildOwnPtrClient( int SetChildOwnPtrClient(
CefOwnPtr<CefTranslatorTestScopedClientChild> val) OVERRIDE; CefOwnPtr<CefTranslatorTestScopedClientChild> val) override;
CefOwnPtr<CefTranslatorTestScopedClient> SetChildOwnPtrClientAndReturnParent( CefOwnPtr<CefTranslatorTestScopedClient> SetChildOwnPtrClientAndReturnParent(
CefOwnPtr<CefTranslatorTestScopedClientChild> val) OVERRIDE; CefOwnPtr<CefTranslatorTestScopedClientChild> val) override;
int SetRawPtrLibrary(CefRawPtr<CefTranslatorTestScopedLibrary> val) OVERRIDE; int SetRawPtrLibrary(CefRawPtr<CefTranslatorTestScopedLibrary> val) override;
int SetChildRawPtrLibrary( int SetChildRawPtrLibrary(
CefRawPtr<CefTranslatorTestScopedLibraryChild> val) OVERRIDE; CefRawPtr<CefTranslatorTestScopedLibraryChild> val) override;
bool SetRawPtrLibraryList( bool SetRawPtrLibraryList(
const std::vector<CefRawPtr<CefTranslatorTestScopedLibrary>>& val, const std::vector<CefRawPtr<CefTranslatorTestScopedLibrary>>& val,
int val1, int val1,
int val2) OVERRIDE; int val2) override;
int SetRawPtrClient(CefRawPtr<CefTranslatorTestScopedClient> val) OVERRIDE; int SetRawPtrClient(CefRawPtr<CefTranslatorTestScopedClient> val) override;
int SetChildRawPtrClient( int SetChildRawPtrClient(
CefRawPtr<CefTranslatorTestScopedClientChild> val) OVERRIDE; CefRawPtr<CefTranslatorTestScopedClientChild> val) override;
bool SetRawPtrClientList( bool SetRawPtrClientList(
const std::vector<CefRawPtr<CefTranslatorTestScopedClient>>& val, const std::vector<CefRawPtr<CefTranslatorTestScopedClient>>& val,
int val1, int val1,
int val2) OVERRIDE; int val2) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=6a66e2e38975072adf919a3b585ce94b254a7639$ // $hash=a19601577d6fbbb47df32d544cbfe72f1691447f$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CHILD_CHILD_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CHILD_CHILD_CTOCPP_H_
@ -36,16 +36,16 @@ class CefTranslatorTestRefPtrLibraryChildChildCToCpp
virtual ~CefTranslatorTestRefPtrLibraryChildChildCToCpp(); virtual ~CefTranslatorTestRefPtrLibraryChildChildCToCpp();
// CefTranslatorTestRefPtrLibraryChildChild methods. // CefTranslatorTestRefPtrLibraryChildChild methods.
int GetOtherOtherValue() OVERRIDE; int GetOtherOtherValue() override;
void SetOtherOtherValue(int value) OVERRIDE; void SetOtherOtherValue(int value) override;
// CefTranslatorTestRefPtrLibraryChild methods. // CefTranslatorTestRefPtrLibraryChild methods.
int GetOtherValue() OVERRIDE; int GetOtherValue() override;
void SetOtherValue(int value) OVERRIDE; void SetOtherValue(int value) override;
// CefTranslatorTestRefPtrLibrary methods. // CefTranslatorTestRefPtrLibrary methods.
int GetValue() OVERRIDE; int GetValue() override;
void SetValue(int value) OVERRIDE; void SetValue(int value) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CHILD_CHILD_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CHILD_CHILD_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=0d111f8f1933fc569fa28128a85c269fb6b0e173$ // $hash=b4d01a3573b935bd11ccc6228eda8a4360866a44$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CHILD_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CHILD_CTOCPP_H_
@ -35,12 +35,12 @@ class CefTranslatorTestRefPtrLibraryChildCToCpp
virtual ~CefTranslatorTestRefPtrLibraryChildCToCpp(); virtual ~CefTranslatorTestRefPtrLibraryChildCToCpp();
// CefTranslatorTestRefPtrLibraryChild methods. // CefTranslatorTestRefPtrLibraryChild methods.
int GetOtherValue() OVERRIDE; int GetOtherValue() override;
void SetOtherValue(int value) OVERRIDE; void SetOtherValue(int value) override;
// CefTranslatorTestRefPtrLibrary methods. // CefTranslatorTestRefPtrLibrary methods.
int GetValue() OVERRIDE; int GetValue() override;
void SetValue(int value) OVERRIDE; void SetValue(int value) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CHILD_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CHILD_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=abede61a749b1cbb1f546918c32601cb707a6ed7$ // $hash=7a3c15a7c8e1ddda031365bffdfb723af307e5a4$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CTOCPP_H_
@ -35,8 +35,8 @@ class CefTranslatorTestRefPtrLibraryCToCpp
virtual ~CefTranslatorTestRefPtrLibraryCToCpp(); virtual ~CefTranslatorTestRefPtrLibraryCToCpp();
// CefTranslatorTestRefPtrLibrary methods. // CefTranslatorTestRefPtrLibrary methods.
int GetValue() OVERRIDE; int GetValue() override;
void SetValue(int value) OVERRIDE; void SetValue(int value) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_REF_PTR_LIBRARY_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=3cbadd1fe76cfdd2cdc69bf74ef5cecded4678a0$ // $hash=d3c6963c651d5172268af9f927b3834e4e96b44f$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CHILD_CHILD_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CHILD_CHILD_CTOCPP_H_
@ -35,16 +35,16 @@ class CefTranslatorTestScopedLibraryChildChildCToCpp
virtual ~CefTranslatorTestScopedLibraryChildChildCToCpp(); virtual ~CefTranslatorTestScopedLibraryChildChildCToCpp();
// CefTranslatorTestScopedLibraryChildChild methods. // CefTranslatorTestScopedLibraryChildChild methods.
int GetOtherOtherValue() OVERRIDE; int GetOtherOtherValue() override;
void SetOtherOtherValue(int value) OVERRIDE; void SetOtherOtherValue(int value) override;
// CefTranslatorTestScopedLibraryChild methods. // CefTranslatorTestScopedLibraryChild methods.
int GetOtherValue() OVERRIDE; int GetOtherValue() override;
void SetOtherValue(int value) OVERRIDE; void SetOtherValue(int value) override;
// CefTranslatorTestScopedLibrary methods. // CefTranslatorTestScopedLibrary methods.
int GetValue() OVERRIDE; int GetValue() override;
void SetValue(int value) OVERRIDE; void SetValue(int value) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CHILD_CHILD_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CHILD_CHILD_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=f7643df00ccbcefbbca15979c07763502de4af2e$ // $hash=d69bc43df1d16fe114cf61bb87ea8e0a1ff343ef$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CHILD_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CHILD_CTOCPP_H_
@ -35,12 +35,12 @@ class CefTranslatorTestScopedLibraryChildCToCpp
virtual ~CefTranslatorTestScopedLibraryChildCToCpp(); virtual ~CefTranslatorTestScopedLibraryChildCToCpp();
// CefTranslatorTestScopedLibraryChild methods. // CefTranslatorTestScopedLibraryChild methods.
int GetOtherValue() OVERRIDE; int GetOtherValue() override;
void SetOtherValue(int value) OVERRIDE; void SetOtherValue(int value) override;
// CefTranslatorTestScopedLibrary methods. // CefTranslatorTestScopedLibrary methods.
int GetValue() OVERRIDE; int GetValue() override;
void SetValue(int value) OVERRIDE; void SetValue(int value) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CHILD_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CHILD_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=32beea0e95a0acdbf22d552970d719382785554a$ // $hash=4ecab663ff0d6a777de108ff3d346eed68ca379d$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CTOCPP_H_
@ -35,8 +35,8 @@ class CefTranslatorTestScopedLibraryCToCpp
virtual ~CefTranslatorTestScopedLibraryCToCpp(); virtual ~CefTranslatorTestScopedLibraryCToCpp();
// CefTranslatorTestScopedLibrary methods. // CefTranslatorTestScopedLibrary methods.
int GetValue() OVERRIDE; int GetValue() override;
void SetValue(int value) OVERRIDE; void SetValue(int value) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_TEST_TRANSLATOR_TEST_SCOPED_LIBRARY_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=67c710cc8e62052d841bcadb7aacc1ccddb4b54f$ // $hash=b7b3e79350d42ab829eff401d6b4486ba4039267$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_THREAD_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_THREAD_CTOCPP_H_
@ -33,10 +33,10 @@ class CefThreadCToCpp
virtual ~CefThreadCToCpp(); virtual ~CefThreadCToCpp();
// CefThread methods. // CefThread methods.
CefRefPtr<CefTaskRunner> GetTaskRunner() OVERRIDE; CefRefPtr<CefTaskRunner> GetTaskRunner() override;
cef_platform_thread_id_t GetPlatformThreadId() OVERRIDE; cef_platform_thread_id_t GetPlatformThreadId() override;
void Stop() OVERRIDE; void Stop() override;
bool IsRunning() OVERRIDE; bool IsRunning() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_THREAD_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_THREAD_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=7751e600cb13017cbdfac3eae39dc7c94d2afec9$ // $hash=7d81111a5bee29ff62a7778678e72085f9bd97d5$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_URLREQUEST_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_URLREQUEST_CTOCPP_H_
@ -34,13 +34,13 @@ class CefURLRequestCToCpp : public CefCToCppRefCounted<CefURLRequestCToCpp,
virtual ~CefURLRequestCToCpp(); virtual ~CefURLRequestCToCpp();
// CefURLRequest methods. // CefURLRequest methods.
CefRefPtr<CefRequest> GetRequest() OVERRIDE; CefRefPtr<CefRequest> GetRequest() override;
CefRefPtr<CefURLRequestClient> GetClient() OVERRIDE; CefRefPtr<CefURLRequestClient> GetClient() override;
Status GetRequestStatus() OVERRIDE; Status GetRequestStatus() override;
ErrorCode GetRequestError() OVERRIDE; ErrorCode GetRequestError() override;
CefRefPtr<CefResponse> GetResponse() OVERRIDE; CefRefPtr<CefResponse> GetResponse() override;
bool ResponseWasCached() OVERRIDE; bool ResponseWasCached() override;
void Cancel() OVERRIDE; void Cancel() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_URLREQUEST_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_URLREQUEST_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=033d22b4a0516a84c2b319ee46a033af7a8009b2$ // $hash=b6eff8c6efe30c1d3e310342c710bae76f018cb6$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_V8CONTEXT_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_V8CONTEXT_CTOCPP_H_
@ -34,19 +34,19 @@ class CefV8ContextCToCpp : public CefCToCppRefCounted<CefV8ContextCToCpp,
virtual ~CefV8ContextCToCpp(); virtual ~CefV8ContextCToCpp();
// CefV8Context methods. // CefV8Context methods.
CefRefPtr<CefTaskRunner> GetTaskRunner() OVERRIDE; CefRefPtr<CefTaskRunner> GetTaskRunner() override;
bool IsValid() OVERRIDE; bool IsValid() override;
CefRefPtr<CefBrowser> GetBrowser() OVERRIDE; CefRefPtr<CefBrowser> GetBrowser() override;
CefRefPtr<CefFrame> GetFrame() OVERRIDE; CefRefPtr<CefFrame> GetFrame() override;
CefRefPtr<CefV8Value> GetGlobal() OVERRIDE; CefRefPtr<CefV8Value> GetGlobal() override;
bool Enter() OVERRIDE; bool Enter() override;
bool Exit() OVERRIDE; bool Exit() override;
bool IsSame(CefRefPtr<CefV8Context> that) OVERRIDE; bool IsSame(CefRefPtr<CefV8Context> that) override;
bool Eval(const CefString& code, bool Eval(const CefString& code,
const CefString& script_url, const CefString& script_url,
int start_line, int start_line,
CefRefPtr<CefV8Value>& retval, CefRefPtr<CefV8Value>& retval,
CefRefPtr<CefV8Exception>& exception) OVERRIDE; CefRefPtr<CefV8Exception>& exception) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_V8CONTEXT_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_V8CONTEXT_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=b6fc50fa3a6e0156743a5c3fce97b1a683e1720a$ // $hash=a2b61cff85a5bf35797134b63606e4a043003f45$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_V8EXCEPTION_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_V8EXCEPTION_CTOCPP_H_
@ -34,14 +34,14 @@ class CefV8ExceptionCToCpp : public CefCToCppRefCounted<CefV8ExceptionCToCpp,
virtual ~CefV8ExceptionCToCpp(); virtual ~CefV8ExceptionCToCpp();
// CefV8Exception methods. // CefV8Exception methods.
CefString GetMessage() OVERRIDE; CefString GetMessage() override;
CefString GetSourceLine() OVERRIDE; CefString GetSourceLine() override;
CefString GetScriptResourceName() OVERRIDE; CefString GetScriptResourceName() override;
int GetLineNumber() OVERRIDE; int GetLineNumber() override;
int GetStartPosition() OVERRIDE; int GetStartPosition() override;
int GetEndPosition() OVERRIDE; int GetEndPosition() override;
int GetStartColumn() OVERRIDE; int GetStartColumn() override;
int GetEndColumn() OVERRIDE; int GetEndColumn() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_V8EXCEPTION_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_V8EXCEPTION_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=d8338dcb3a42fe51b2be32870283801bf5c3367b$ // $hash=6287d21581cc9cf0593134eaa1de4dd97628f495$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_V8STACK_FRAME_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_V8STACK_FRAME_CTOCPP_H_
@ -34,14 +34,14 @@ class CefV8StackFrameCToCpp : public CefCToCppRefCounted<CefV8StackFrameCToCpp,
virtual ~CefV8StackFrameCToCpp(); virtual ~CefV8StackFrameCToCpp();
// CefV8StackFrame methods. // CefV8StackFrame methods.
bool IsValid() OVERRIDE; bool IsValid() override;
CefString GetScriptName() OVERRIDE; CefString GetScriptName() override;
CefString GetScriptNameOrSourceURL() OVERRIDE; CefString GetScriptNameOrSourceURL() override;
CefString GetFunctionName() OVERRIDE; CefString GetFunctionName() override;
int GetLineNumber() OVERRIDE; int GetLineNumber() override;
int GetColumn() OVERRIDE; int GetColumn() override;
bool IsEval() OVERRIDE; bool IsEval() override;
bool IsConstructor() OVERRIDE; bool IsConstructor() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_V8STACK_FRAME_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_V8STACK_FRAME_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=293e9949e304f81acfd28e41be9b43000feb2bca$ // $hash=21dabd0e5523be4bcb1b2256cd0392142d9e0eb7$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_V8STACK_TRACE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_V8STACK_TRACE_CTOCPP_H_
@ -34,9 +34,9 @@ class CefV8StackTraceCToCpp : public CefCToCppRefCounted<CefV8StackTraceCToCpp,
virtual ~CefV8StackTraceCToCpp(); virtual ~CefV8StackTraceCToCpp();
// CefV8StackTrace methods. // CefV8StackTrace methods.
bool IsValid() OVERRIDE; bool IsValid() override;
int GetFrameCount() OVERRIDE; int GetFrameCount() override;
CefRefPtr<CefV8StackFrame> GetFrame(int index) OVERRIDE; CefRefPtr<CefV8StackFrame> GetFrame(int index) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_V8STACK_TRACE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_V8STACK_TRACE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=910a0180e7ea517327b439aec32d6e4cede15e80$ // $hash=69d5e62435d2481e821ce512ec9b609246add4e7$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_V8VALUE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_V8VALUE_CTOCPP_H_
@ -34,63 +34,63 @@ class CefV8ValueCToCpp
virtual ~CefV8ValueCToCpp(); virtual ~CefV8ValueCToCpp();
// CefV8Value methods. // CefV8Value methods.
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsUndefined() OVERRIDE; bool IsUndefined() override;
bool IsNull() OVERRIDE; bool IsNull() override;
bool IsBool() OVERRIDE; bool IsBool() override;
bool IsInt() OVERRIDE; bool IsInt() override;
bool IsUInt() OVERRIDE; bool IsUInt() override;
bool IsDouble() OVERRIDE; bool IsDouble() override;
bool IsDate() OVERRIDE; bool IsDate() override;
bool IsString() OVERRIDE; bool IsString() override;
bool IsObject() OVERRIDE; bool IsObject() override;
bool IsArray() OVERRIDE; bool IsArray() override;
bool IsArrayBuffer() OVERRIDE; bool IsArrayBuffer() override;
bool IsFunction() OVERRIDE; bool IsFunction() override;
bool IsSame(CefRefPtr<CefV8Value> that) OVERRIDE; bool IsSame(CefRefPtr<CefV8Value> that) override;
bool GetBoolValue() OVERRIDE; bool GetBoolValue() override;
int32 GetIntValue() OVERRIDE; int32 GetIntValue() override;
uint32 GetUIntValue() OVERRIDE; uint32 GetUIntValue() override;
double GetDoubleValue() OVERRIDE; double GetDoubleValue() override;
CefTime GetDateValue() OVERRIDE; CefTime GetDateValue() override;
CefString GetStringValue() OVERRIDE; CefString GetStringValue() override;
bool IsUserCreated() OVERRIDE; bool IsUserCreated() override;
bool HasException() OVERRIDE; bool HasException() override;
CefRefPtr<CefV8Exception> GetException() OVERRIDE; CefRefPtr<CefV8Exception> GetException() override;
bool ClearException() OVERRIDE; bool ClearException() override;
bool WillRethrowExceptions() OVERRIDE; bool WillRethrowExceptions() override;
bool SetRethrowExceptions(bool rethrow) OVERRIDE; bool SetRethrowExceptions(bool rethrow) override;
bool HasValue(const CefString& key) OVERRIDE; bool HasValue(const CefString& key) override;
bool HasValue(int index) OVERRIDE; bool HasValue(int index) override;
bool DeleteValue(const CefString& key) OVERRIDE; bool DeleteValue(const CefString& key) override;
bool DeleteValue(int index) OVERRIDE; bool DeleteValue(int index) override;
CefRefPtr<CefV8Value> GetValue(const CefString& key) OVERRIDE; CefRefPtr<CefV8Value> GetValue(const CefString& key) override;
CefRefPtr<CefV8Value> GetValue(int index) OVERRIDE; CefRefPtr<CefV8Value> GetValue(int index) override;
bool SetValue(const CefString& key, bool SetValue(const CefString& key,
CefRefPtr<CefV8Value> value, CefRefPtr<CefV8Value> value,
PropertyAttribute attribute) OVERRIDE; PropertyAttribute attribute) override;
bool SetValue(int index, CefRefPtr<CefV8Value> value) OVERRIDE; bool SetValue(int index, CefRefPtr<CefV8Value> value) override;
bool SetValue(const CefString& key, bool SetValue(const CefString& key,
AccessControl settings, AccessControl settings,
PropertyAttribute attribute) OVERRIDE; PropertyAttribute attribute) override;
bool GetKeys(std::vector<CefString>& keys) OVERRIDE; bool GetKeys(std::vector<CefString>& keys) override;
bool SetUserData(CefRefPtr<CefBaseRefCounted> user_data) OVERRIDE; bool SetUserData(CefRefPtr<CefBaseRefCounted> user_data) override;
CefRefPtr<CefBaseRefCounted> GetUserData() OVERRIDE; CefRefPtr<CefBaseRefCounted> GetUserData() override;
int GetExternallyAllocatedMemory() OVERRIDE; int GetExternallyAllocatedMemory() override;
int AdjustExternallyAllocatedMemory(int change_in_bytes) OVERRIDE; int AdjustExternallyAllocatedMemory(int change_in_bytes) override;
int GetArrayLength() OVERRIDE; int GetArrayLength() override;
CefRefPtr<CefV8ArrayBufferReleaseCallback> GetArrayBufferReleaseCallback() CefRefPtr<CefV8ArrayBufferReleaseCallback> GetArrayBufferReleaseCallback()
OVERRIDE; override;
bool NeuterArrayBuffer() OVERRIDE; bool NeuterArrayBuffer() override;
CefString GetFunctionName() OVERRIDE; CefString GetFunctionName() override;
CefRefPtr<CefV8Handler> GetFunctionHandler() OVERRIDE; CefRefPtr<CefV8Handler> GetFunctionHandler() override;
CefRefPtr<CefV8Value> ExecuteFunction( CefRefPtr<CefV8Value> ExecuteFunction(
CefRefPtr<CefV8Value> object, CefRefPtr<CefV8Value> object,
const CefV8ValueList& arguments) OVERRIDE; const CefV8ValueList& arguments) override;
CefRefPtr<CefV8Value> ExecuteFunctionWithContext( CefRefPtr<CefV8Value> ExecuteFunctionWithContext(
CefRefPtr<CefV8Context> context, CefRefPtr<CefV8Context> context,
CefRefPtr<CefV8Value> object, CefRefPtr<CefV8Value> object,
const CefV8ValueList& arguments) OVERRIDE; const CefV8ValueList& arguments) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_V8VALUE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_V8VALUE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=5ade4141053ca1aa2f8c97eb4b93ab02af2aaf33$ // $hash=5aadd498c1b3c4274e6ba7e8343308fa02fb1f23$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_
@ -33,28 +33,28 @@ class CefValueCToCpp
virtual ~CefValueCToCpp(); virtual ~CefValueCToCpp();
// CefValue methods. // CefValue methods.
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsOwned() OVERRIDE; bool IsOwned() override;
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
bool IsSame(CefRefPtr<CefValue> that) OVERRIDE; bool IsSame(CefRefPtr<CefValue> that) override;
bool IsEqual(CefRefPtr<CefValue> that) OVERRIDE; bool IsEqual(CefRefPtr<CefValue> that) override;
CefRefPtr<CefValue> Copy() OVERRIDE; CefRefPtr<CefValue> Copy() override;
CefValueType GetType() OVERRIDE; CefValueType GetType() override;
bool GetBool() OVERRIDE; bool GetBool() override;
int GetInt() OVERRIDE; int GetInt() override;
double GetDouble() OVERRIDE; double GetDouble() override;
CefString GetString() OVERRIDE; CefString GetString() override;
CefRefPtr<CefBinaryValue> GetBinary() OVERRIDE; CefRefPtr<CefBinaryValue> GetBinary() override;
CefRefPtr<CefDictionaryValue> GetDictionary() OVERRIDE; CefRefPtr<CefDictionaryValue> GetDictionary() override;
CefRefPtr<CefListValue> GetList() OVERRIDE; CefRefPtr<CefListValue> GetList() override;
bool SetNull() OVERRIDE; bool SetNull() override;
bool SetBool(bool value) OVERRIDE; bool SetBool(bool value) override;
bool SetInt(int value) OVERRIDE; bool SetInt(int value) override;
bool SetDouble(double value) OVERRIDE; bool SetDouble(double value) override;
bool SetString(const CefString& value) OVERRIDE; bool SetString(const CefString& value) override;
bool SetBinary(CefRefPtr<CefBinaryValue> value) OVERRIDE; bool SetBinary(CefRefPtr<CefBinaryValue> value) override;
bool SetDictionary(CefRefPtr<CefDictionaryValue> value) OVERRIDE; bool SetDictionary(CefRefPtr<CefDictionaryValue> value) override;
bool SetList(CefRefPtr<CefListValue> value) OVERRIDE; bool SetList(CefRefPtr<CefListValue> value) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=50dddd7ad5a249b2c8cfe95d766c3294c359b288$ // $hash=c3ec7ad3ed23359659a1089e38b2f658193034ca$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_BOX_LAYOUT_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_BOX_LAYOUT_CTOCPP_H_
@ -36,13 +36,13 @@ class CefBoxLayoutCToCpp : public CefCToCppRefCounted<CefBoxLayoutCToCpp,
virtual ~CefBoxLayoutCToCpp(); virtual ~CefBoxLayoutCToCpp();
// CefBoxLayout methods. // CefBoxLayout methods.
void SetFlexForView(CefRefPtr<CefView> view, int flex) OVERRIDE; void SetFlexForView(CefRefPtr<CefView> view, int flex) override;
void ClearFlexForView(CefRefPtr<CefView> view) OVERRIDE; void ClearFlexForView(CefRefPtr<CefView> view) override;
// CefLayout methods. // CefLayout methods.
CefRefPtr<CefBoxLayout> AsBoxLayout() OVERRIDE; CefRefPtr<CefBoxLayout> AsBoxLayout() override;
CefRefPtr<CefFillLayout> AsFillLayout() OVERRIDE; CefRefPtr<CefFillLayout> AsFillLayout() override;
bool IsValid() OVERRIDE; bool IsValid() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_BOX_LAYOUT_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_BOX_LAYOUT_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=f17d395c61d650a824016d14bc06d0cb9db9a6e6$ // $hash=1c713db1e73d434b6bce3aea8e3a6dddbc547b61$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_BROWSER_VIEW_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_BROWSER_VIEW_CTOCPP_H_
@ -34,59 +34,59 @@ class CefBrowserViewCToCpp : public CefCToCppRefCounted<CefBrowserViewCToCpp,
virtual ~CefBrowserViewCToCpp(); virtual ~CefBrowserViewCToCpp();
// CefBrowserView methods. // CefBrowserView methods.
CefRefPtr<CefBrowser> GetBrowser() OVERRIDE; CefRefPtr<CefBrowser> GetBrowser() override;
CefRefPtr<CefView> GetChromeToolbar() OVERRIDE; CefRefPtr<CefView> GetChromeToolbar() override;
void SetPreferAccelerators(bool prefer_accelerators) OVERRIDE; void SetPreferAccelerators(bool prefer_accelerators) override;
// CefView methods. // CefView methods.
CefRefPtr<CefBrowserView> AsBrowserView() OVERRIDE; CefRefPtr<CefBrowserView> AsBrowserView() override;
CefRefPtr<CefButton> AsButton() OVERRIDE; CefRefPtr<CefButton> AsButton() override;
CefRefPtr<CefPanel> AsPanel() OVERRIDE; CefRefPtr<CefPanel> AsPanel() override;
CefRefPtr<CefScrollView> AsScrollView() OVERRIDE; CefRefPtr<CefScrollView> AsScrollView() override;
CefRefPtr<CefTextfield> AsTextfield() OVERRIDE; CefRefPtr<CefTextfield> AsTextfield() override;
CefString GetTypeString() OVERRIDE; CefString GetTypeString() override;
CefString ToString(bool include_children) OVERRIDE; CefString ToString(bool include_children) override;
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsAttached() OVERRIDE; bool IsAttached() override;
bool IsSame(CefRefPtr<CefView> that) OVERRIDE; bool IsSame(CefRefPtr<CefView> that) override;
CefRefPtr<CefViewDelegate> GetDelegate() OVERRIDE; CefRefPtr<CefViewDelegate> GetDelegate() override;
CefRefPtr<CefWindow> GetWindow() OVERRIDE; CefRefPtr<CefWindow> GetWindow() override;
int GetID() OVERRIDE; int GetID() override;
void SetID(int id) OVERRIDE; void SetID(int id) override;
int GetGroupID() OVERRIDE; int GetGroupID() override;
void SetGroupID(int group_id) OVERRIDE; void SetGroupID(int group_id) override;
CefRefPtr<CefView> GetParentView() OVERRIDE; CefRefPtr<CefView> GetParentView() override;
CefRefPtr<CefView> GetViewForID(int id) OVERRIDE; CefRefPtr<CefView> GetViewForID(int id) override;
void SetBounds(const CefRect& bounds) OVERRIDE; void SetBounds(const CefRect& bounds) override;
CefRect GetBounds() OVERRIDE; CefRect GetBounds() override;
CefRect GetBoundsInScreen() OVERRIDE; CefRect GetBoundsInScreen() override;
void SetSize(const CefSize& size) OVERRIDE; void SetSize(const CefSize& size) override;
CefSize GetSize() OVERRIDE; CefSize GetSize() override;
void SetPosition(const CefPoint& position) OVERRIDE; void SetPosition(const CefPoint& position) override;
CefPoint GetPosition() OVERRIDE; CefPoint GetPosition() override;
CefSize GetPreferredSize() OVERRIDE; CefSize GetPreferredSize() override;
void SizeToPreferredSize() OVERRIDE; void SizeToPreferredSize() override;
CefSize GetMinimumSize() OVERRIDE; CefSize GetMinimumSize() override;
CefSize GetMaximumSize() OVERRIDE; CefSize GetMaximumSize() override;
int GetHeightForWidth(int width) OVERRIDE; int GetHeightForWidth(int width) override;
void InvalidateLayout() OVERRIDE; void InvalidateLayout() override;
void SetVisible(bool visible) OVERRIDE; void SetVisible(bool visible) override;
bool IsVisible() OVERRIDE; bool IsVisible() override;
bool IsDrawn() OVERRIDE; bool IsDrawn() override;
void SetEnabled(bool enabled) OVERRIDE; void SetEnabled(bool enabled) override;
bool IsEnabled() OVERRIDE; bool IsEnabled() override;
void SetFocusable(bool focusable) OVERRIDE; void SetFocusable(bool focusable) override;
bool IsFocusable() OVERRIDE; bool IsFocusable() override;
bool IsAccessibilityFocusable() OVERRIDE; bool IsAccessibilityFocusable() override;
void RequestFocus() OVERRIDE; void RequestFocus() override;
void SetBackgroundColor(cef_color_t color) OVERRIDE; void SetBackgroundColor(cef_color_t color) override;
cef_color_t GetBackgroundColor() OVERRIDE; cef_color_t GetBackgroundColor() override;
bool ConvertPointToScreen(CefPoint& point) OVERRIDE; bool ConvertPointToScreen(CefPoint& point) override;
bool ConvertPointFromScreen(CefPoint& point) OVERRIDE; bool ConvertPointFromScreen(CefPoint& point) override;
bool ConvertPointToWindow(CefPoint& point) OVERRIDE; bool ConvertPointToWindow(CefPoint& point) override;
bool ConvertPointFromWindow(CefPoint& point) OVERRIDE; bool ConvertPointFromWindow(CefPoint& point) override;
bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) override;
bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_BROWSER_VIEW_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_BROWSER_VIEW_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=2741cab25f5633f178ba1f924abe58e418f1f084$ // $hash=b543831782043e1651b8adfa907a60b553267ca7$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_BUTTON_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_BUTTON_CTOCPP_H_
@ -35,62 +35,62 @@ class CefButtonCToCpp
virtual ~CefButtonCToCpp(); virtual ~CefButtonCToCpp();
// CefButton methods. // CefButton methods.
CefRefPtr<CefLabelButton> AsLabelButton() OVERRIDE; CefRefPtr<CefLabelButton> AsLabelButton() override;
void SetState(cef_button_state_t state) OVERRIDE; void SetState(cef_button_state_t state) override;
cef_button_state_t GetState() OVERRIDE; cef_button_state_t GetState() override;
void SetInkDropEnabled(bool enabled) OVERRIDE; void SetInkDropEnabled(bool enabled) override;
void SetTooltipText(const CefString& tooltip_text) OVERRIDE; void SetTooltipText(const CefString& tooltip_text) override;
void SetAccessibleName(const CefString& name) OVERRIDE; void SetAccessibleName(const CefString& name) override;
// CefView methods. // CefView methods.
CefRefPtr<CefBrowserView> AsBrowserView() OVERRIDE; CefRefPtr<CefBrowserView> AsBrowserView() override;
CefRefPtr<CefButton> AsButton() OVERRIDE; CefRefPtr<CefButton> AsButton() override;
CefRefPtr<CefPanel> AsPanel() OVERRIDE; CefRefPtr<CefPanel> AsPanel() override;
CefRefPtr<CefScrollView> AsScrollView() OVERRIDE; CefRefPtr<CefScrollView> AsScrollView() override;
CefRefPtr<CefTextfield> AsTextfield() OVERRIDE; CefRefPtr<CefTextfield> AsTextfield() override;
CefString GetTypeString() OVERRIDE; CefString GetTypeString() override;
CefString ToString(bool include_children) OVERRIDE; CefString ToString(bool include_children) override;
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsAttached() OVERRIDE; bool IsAttached() override;
bool IsSame(CefRefPtr<CefView> that) OVERRIDE; bool IsSame(CefRefPtr<CefView> that) override;
CefRefPtr<CefViewDelegate> GetDelegate() OVERRIDE; CefRefPtr<CefViewDelegate> GetDelegate() override;
CefRefPtr<CefWindow> GetWindow() OVERRIDE; CefRefPtr<CefWindow> GetWindow() override;
int GetID() OVERRIDE; int GetID() override;
void SetID(int id) OVERRIDE; void SetID(int id) override;
int GetGroupID() OVERRIDE; int GetGroupID() override;
void SetGroupID(int group_id) OVERRIDE; void SetGroupID(int group_id) override;
CefRefPtr<CefView> GetParentView() OVERRIDE; CefRefPtr<CefView> GetParentView() override;
CefRefPtr<CefView> GetViewForID(int id) OVERRIDE; CefRefPtr<CefView> GetViewForID(int id) override;
void SetBounds(const CefRect& bounds) OVERRIDE; void SetBounds(const CefRect& bounds) override;
CefRect GetBounds() OVERRIDE; CefRect GetBounds() override;
CefRect GetBoundsInScreen() OVERRIDE; CefRect GetBoundsInScreen() override;
void SetSize(const CefSize& size) OVERRIDE; void SetSize(const CefSize& size) override;
CefSize GetSize() OVERRIDE; CefSize GetSize() override;
void SetPosition(const CefPoint& position) OVERRIDE; void SetPosition(const CefPoint& position) override;
CefPoint GetPosition() OVERRIDE; CefPoint GetPosition() override;
CefSize GetPreferredSize() OVERRIDE; CefSize GetPreferredSize() override;
void SizeToPreferredSize() OVERRIDE; void SizeToPreferredSize() override;
CefSize GetMinimumSize() OVERRIDE; CefSize GetMinimumSize() override;
CefSize GetMaximumSize() OVERRIDE; CefSize GetMaximumSize() override;
int GetHeightForWidth(int width) OVERRIDE; int GetHeightForWidth(int width) override;
void InvalidateLayout() OVERRIDE; void InvalidateLayout() override;
void SetVisible(bool visible) OVERRIDE; void SetVisible(bool visible) override;
bool IsVisible() OVERRIDE; bool IsVisible() override;
bool IsDrawn() OVERRIDE; bool IsDrawn() override;
void SetEnabled(bool enabled) OVERRIDE; void SetEnabled(bool enabled) override;
bool IsEnabled() OVERRIDE; bool IsEnabled() override;
void SetFocusable(bool focusable) OVERRIDE; void SetFocusable(bool focusable) override;
bool IsFocusable() OVERRIDE; bool IsFocusable() override;
bool IsAccessibilityFocusable() OVERRIDE; bool IsAccessibilityFocusable() override;
void RequestFocus() OVERRIDE; void RequestFocus() override;
void SetBackgroundColor(cef_color_t color) OVERRIDE; void SetBackgroundColor(cef_color_t color) override;
cef_color_t GetBackgroundColor() OVERRIDE; cef_color_t GetBackgroundColor() override;
bool ConvertPointToScreen(CefPoint& point) OVERRIDE; bool ConvertPointToScreen(CefPoint& point) override;
bool ConvertPointFromScreen(CefPoint& point) OVERRIDE; bool ConvertPointFromScreen(CefPoint& point) override;
bool ConvertPointToWindow(CefPoint& point) OVERRIDE; bool ConvertPointToWindow(CefPoint& point) override;
bool ConvertPointFromWindow(CefPoint& point) OVERRIDE; bool ConvertPointFromWindow(CefPoint& point) override;
bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) override;
bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_BUTTON_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_BUTTON_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=5f9d1b14172e8cbd5071f836319840c439b0c74f$ // $hash=22aff48abcbe228e3e2991b9659e802c0c5b51fb$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_DISPLAY_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_DISPLAY_CTOCPP_H_
@ -33,13 +33,13 @@ class CefDisplayCToCpp
virtual ~CefDisplayCToCpp(); virtual ~CefDisplayCToCpp();
// CefDisplay methods. // CefDisplay methods.
int64 GetID() OVERRIDE; int64 GetID() override;
float GetDeviceScaleFactor() OVERRIDE; float GetDeviceScaleFactor() override;
void ConvertPointToPixels(CefPoint& point) OVERRIDE; void ConvertPointToPixels(CefPoint& point) override;
void ConvertPointFromPixels(CefPoint& point) OVERRIDE; void ConvertPointFromPixels(CefPoint& point) override;
CefRect GetBounds() OVERRIDE; CefRect GetBounds() override;
CefRect GetWorkArea() OVERRIDE; CefRect GetWorkArea() override;
int GetRotation() OVERRIDE; int GetRotation() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_DISPLAY_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_DISPLAY_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=333a603b19a7093fcb7303382626a9542172da24$ // $hash=572c204395f194e0de50b85a0be8e0e8e21cb7fd$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_FILL_LAYOUT_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_FILL_LAYOUT_CTOCPP_H_
@ -36,9 +36,9 @@ class CefFillLayoutCToCpp : public CefCToCppRefCounted<CefFillLayoutCToCpp,
// CefFillLayout methods. // CefFillLayout methods.
// CefLayout methods. // CefLayout methods.
CefRefPtr<CefBoxLayout> AsBoxLayout() OVERRIDE; CefRefPtr<CefBoxLayout> AsBoxLayout() override;
CefRefPtr<CefFillLayout> AsFillLayout() OVERRIDE; CefRefPtr<CefFillLayout> AsFillLayout() override;
bool IsValid() OVERRIDE; bool IsValid() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_FILL_LAYOUT_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_FILL_LAYOUT_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=303a2dc851723c3bf14c8dc8d58168d75d7f173a$ // $hash=ef0338428bd0261ccfc0235718d8d1bd81e30315$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_LABEL_BUTTON_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_LABEL_BUTTON_CTOCPP_H_
@ -36,76 +36,76 @@ class CefLabelButtonCToCpp : public CefCToCppRefCounted<CefLabelButtonCToCpp,
virtual ~CefLabelButtonCToCpp(); virtual ~CefLabelButtonCToCpp();
// CefLabelButton methods. // CefLabelButton methods.
CefRefPtr<CefMenuButton> AsMenuButton() OVERRIDE; CefRefPtr<CefMenuButton> AsMenuButton() override;
void SetText(const CefString& text) OVERRIDE; void SetText(const CefString& text) override;
CefString GetText() OVERRIDE; CefString GetText() override;
void SetImage(cef_button_state_t button_state, void SetImage(cef_button_state_t button_state,
CefRefPtr<CefImage> image) OVERRIDE; CefRefPtr<CefImage> image) override;
CefRefPtr<CefImage> GetImage(cef_button_state_t button_state) OVERRIDE; CefRefPtr<CefImage> GetImage(cef_button_state_t button_state) override;
void SetTextColor(cef_button_state_t for_state, cef_color_t color) OVERRIDE; void SetTextColor(cef_button_state_t for_state, cef_color_t color) override;
void SetEnabledTextColors(cef_color_t color) OVERRIDE; void SetEnabledTextColors(cef_color_t color) override;
void SetFontList(const CefString& font_list) OVERRIDE; void SetFontList(const CefString& font_list) override;
void SetHorizontalAlignment(cef_horizontal_alignment_t alignment) OVERRIDE; void SetHorizontalAlignment(cef_horizontal_alignment_t alignment) override;
void SetMinimumSize(const CefSize& size) OVERRIDE; void SetMinimumSize(const CefSize& size) override;
void SetMaximumSize(const CefSize& size) OVERRIDE; void SetMaximumSize(const CefSize& size) override;
// CefButton methods. // CefButton methods.
CefRefPtr<CefLabelButton> AsLabelButton() OVERRIDE; CefRefPtr<CefLabelButton> AsLabelButton() override;
void SetState(cef_button_state_t state) OVERRIDE; void SetState(cef_button_state_t state) override;
cef_button_state_t GetState() OVERRIDE; cef_button_state_t GetState() override;
void SetInkDropEnabled(bool enabled) OVERRIDE; void SetInkDropEnabled(bool enabled) override;
void SetTooltipText(const CefString& tooltip_text) OVERRIDE; void SetTooltipText(const CefString& tooltip_text) override;
void SetAccessibleName(const CefString& name) OVERRIDE; void SetAccessibleName(const CefString& name) override;
// CefView methods. // CefView methods.
CefRefPtr<CefBrowserView> AsBrowserView() OVERRIDE; CefRefPtr<CefBrowserView> AsBrowserView() override;
CefRefPtr<CefButton> AsButton() OVERRIDE; CefRefPtr<CefButton> AsButton() override;
CefRefPtr<CefPanel> AsPanel() OVERRIDE; CefRefPtr<CefPanel> AsPanel() override;
CefRefPtr<CefScrollView> AsScrollView() OVERRIDE; CefRefPtr<CefScrollView> AsScrollView() override;
CefRefPtr<CefTextfield> AsTextfield() OVERRIDE; CefRefPtr<CefTextfield> AsTextfield() override;
CefString GetTypeString() OVERRIDE; CefString GetTypeString() override;
CefString ToString(bool include_children) OVERRIDE; CefString ToString(bool include_children) override;
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsAttached() OVERRIDE; bool IsAttached() override;
bool IsSame(CefRefPtr<CefView> that) OVERRIDE; bool IsSame(CefRefPtr<CefView> that) override;
CefRefPtr<CefViewDelegate> GetDelegate() OVERRIDE; CefRefPtr<CefViewDelegate> GetDelegate() override;
CefRefPtr<CefWindow> GetWindow() OVERRIDE; CefRefPtr<CefWindow> GetWindow() override;
int GetID() OVERRIDE; int GetID() override;
void SetID(int id) OVERRIDE; void SetID(int id) override;
int GetGroupID() OVERRIDE; int GetGroupID() override;
void SetGroupID(int group_id) OVERRIDE; void SetGroupID(int group_id) override;
CefRefPtr<CefView> GetParentView() OVERRIDE; CefRefPtr<CefView> GetParentView() override;
CefRefPtr<CefView> GetViewForID(int id) OVERRIDE; CefRefPtr<CefView> GetViewForID(int id) override;
void SetBounds(const CefRect& bounds) OVERRIDE; void SetBounds(const CefRect& bounds) override;
CefRect GetBounds() OVERRIDE; CefRect GetBounds() override;
CefRect GetBoundsInScreen() OVERRIDE; CefRect GetBoundsInScreen() override;
void SetSize(const CefSize& size) OVERRIDE; void SetSize(const CefSize& size) override;
CefSize GetSize() OVERRIDE; CefSize GetSize() override;
void SetPosition(const CefPoint& position) OVERRIDE; void SetPosition(const CefPoint& position) override;
CefPoint GetPosition() OVERRIDE; CefPoint GetPosition() override;
CefSize GetPreferredSize() OVERRIDE; CefSize GetPreferredSize() override;
void SizeToPreferredSize() OVERRIDE; void SizeToPreferredSize() override;
CefSize GetMinimumSize() OVERRIDE; CefSize GetMinimumSize() override;
CefSize GetMaximumSize() OVERRIDE; CefSize GetMaximumSize() override;
int GetHeightForWidth(int width) OVERRIDE; int GetHeightForWidth(int width) override;
void InvalidateLayout() OVERRIDE; void InvalidateLayout() override;
void SetVisible(bool visible) OVERRIDE; void SetVisible(bool visible) override;
bool IsVisible() OVERRIDE; bool IsVisible() override;
bool IsDrawn() OVERRIDE; bool IsDrawn() override;
void SetEnabled(bool enabled) OVERRIDE; void SetEnabled(bool enabled) override;
bool IsEnabled() OVERRIDE; bool IsEnabled() override;
void SetFocusable(bool focusable) OVERRIDE; void SetFocusable(bool focusable) override;
bool IsFocusable() OVERRIDE; bool IsFocusable() override;
bool IsAccessibilityFocusable() OVERRIDE; bool IsAccessibilityFocusable() override;
void RequestFocus() OVERRIDE; void RequestFocus() override;
void SetBackgroundColor(cef_color_t color) OVERRIDE; void SetBackgroundColor(cef_color_t color) override;
cef_color_t GetBackgroundColor() OVERRIDE; cef_color_t GetBackgroundColor() override;
bool ConvertPointToScreen(CefPoint& point) OVERRIDE; bool ConvertPointToScreen(CefPoint& point) override;
bool ConvertPointFromScreen(CefPoint& point) OVERRIDE; bool ConvertPointFromScreen(CefPoint& point) override;
bool ConvertPointToWindow(CefPoint& point) OVERRIDE; bool ConvertPointToWindow(CefPoint& point) override;
bool ConvertPointFromWindow(CefPoint& point) OVERRIDE; bool ConvertPointFromWindow(CefPoint& point) override;
bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) override;
bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_LABEL_BUTTON_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_LABEL_BUTTON_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=4f7c396f1ffa7895fcf12595e623f6466f396b2a$ // $hash=a4bab65668eebf704fc7156df4589cb2a7b0fe50$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_LAYOUT_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_LAYOUT_CTOCPP_H_
@ -37,9 +37,9 @@ class CefLayoutCToCpp
virtual ~CefLayoutCToCpp(); virtual ~CefLayoutCToCpp();
// CefLayout methods. // CefLayout methods.
CefRefPtr<CefBoxLayout> AsBoxLayout() OVERRIDE; CefRefPtr<CefBoxLayout> AsBoxLayout() override;
CefRefPtr<CefFillLayout> AsFillLayout() OVERRIDE; CefRefPtr<CefFillLayout> AsFillLayout() override;
bool IsValid() OVERRIDE; bool IsValid() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_LAYOUT_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_LAYOUT_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=b8208488ed5afed11401a1e2dd647af06a8fe25a$ // $hash=90b4b0b803eaeef6873d455a2686dfd9f56a9fc3$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_MENU_BUTTON_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_MENU_BUTTON_CTOCPP_H_
@ -36,80 +36,80 @@ class CefMenuButtonCToCpp : public CefCToCppRefCounted<CefMenuButtonCToCpp,
// CefMenuButton methods. // CefMenuButton methods.
void ShowMenu(CefRefPtr<CefMenuModel> menu_model, void ShowMenu(CefRefPtr<CefMenuModel> menu_model,
const CefPoint& screen_point, const CefPoint& screen_point,
cef_menu_anchor_position_t anchor_position) OVERRIDE; cef_menu_anchor_position_t anchor_position) override;
void TriggerMenu() OVERRIDE; void TriggerMenu() override;
// CefLabelButton methods. // CefLabelButton methods.
CefRefPtr<CefMenuButton> AsMenuButton() OVERRIDE; CefRefPtr<CefMenuButton> AsMenuButton() override;
void SetText(const CefString& text) OVERRIDE; void SetText(const CefString& text) override;
CefString GetText() OVERRIDE; CefString GetText() override;
void SetImage(cef_button_state_t button_state, void SetImage(cef_button_state_t button_state,
CefRefPtr<CefImage> image) OVERRIDE; CefRefPtr<CefImage> image) override;
CefRefPtr<CefImage> GetImage(cef_button_state_t button_state) OVERRIDE; CefRefPtr<CefImage> GetImage(cef_button_state_t button_state) override;
void SetTextColor(cef_button_state_t for_state, cef_color_t color) OVERRIDE; void SetTextColor(cef_button_state_t for_state, cef_color_t color) override;
void SetEnabledTextColors(cef_color_t color) OVERRIDE; void SetEnabledTextColors(cef_color_t color) override;
void SetFontList(const CefString& font_list) OVERRIDE; void SetFontList(const CefString& font_list) override;
void SetHorizontalAlignment(cef_horizontal_alignment_t alignment) OVERRIDE; void SetHorizontalAlignment(cef_horizontal_alignment_t alignment) override;
void SetMinimumSize(const CefSize& size) OVERRIDE; void SetMinimumSize(const CefSize& size) override;
void SetMaximumSize(const CefSize& size) OVERRIDE; void SetMaximumSize(const CefSize& size) override;
// CefButton methods. // CefButton methods.
CefRefPtr<CefLabelButton> AsLabelButton() OVERRIDE; CefRefPtr<CefLabelButton> AsLabelButton() override;
void SetState(cef_button_state_t state) OVERRIDE; void SetState(cef_button_state_t state) override;
cef_button_state_t GetState() OVERRIDE; cef_button_state_t GetState() override;
void SetInkDropEnabled(bool enabled) OVERRIDE; void SetInkDropEnabled(bool enabled) override;
void SetTooltipText(const CefString& tooltip_text) OVERRIDE; void SetTooltipText(const CefString& tooltip_text) override;
void SetAccessibleName(const CefString& name) OVERRIDE; void SetAccessibleName(const CefString& name) override;
// CefView methods. // CefView methods.
CefRefPtr<CefBrowserView> AsBrowserView() OVERRIDE; CefRefPtr<CefBrowserView> AsBrowserView() override;
CefRefPtr<CefButton> AsButton() OVERRIDE; CefRefPtr<CefButton> AsButton() override;
CefRefPtr<CefPanel> AsPanel() OVERRIDE; CefRefPtr<CefPanel> AsPanel() override;
CefRefPtr<CefScrollView> AsScrollView() OVERRIDE; CefRefPtr<CefScrollView> AsScrollView() override;
CefRefPtr<CefTextfield> AsTextfield() OVERRIDE; CefRefPtr<CefTextfield> AsTextfield() override;
CefString GetTypeString() OVERRIDE; CefString GetTypeString() override;
CefString ToString(bool include_children) OVERRIDE; CefString ToString(bool include_children) override;
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsAttached() OVERRIDE; bool IsAttached() override;
bool IsSame(CefRefPtr<CefView> that) OVERRIDE; bool IsSame(CefRefPtr<CefView> that) override;
CefRefPtr<CefViewDelegate> GetDelegate() OVERRIDE; CefRefPtr<CefViewDelegate> GetDelegate() override;
CefRefPtr<CefWindow> GetWindow() OVERRIDE; CefRefPtr<CefWindow> GetWindow() override;
int GetID() OVERRIDE; int GetID() override;
void SetID(int id) OVERRIDE; void SetID(int id) override;
int GetGroupID() OVERRIDE; int GetGroupID() override;
void SetGroupID(int group_id) OVERRIDE; void SetGroupID(int group_id) override;
CefRefPtr<CefView> GetParentView() OVERRIDE; CefRefPtr<CefView> GetParentView() override;
CefRefPtr<CefView> GetViewForID(int id) OVERRIDE; CefRefPtr<CefView> GetViewForID(int id) override;
void SetBounds(const CefRect& bounds) OVERRIDE; void SetBounds(const CefRect& bounds) override;
CefRect GetBounds() OVERRIDE; CefRect GetBounds() override;
CefRect GetBoundsInScreen() OVERRIDE; CefRect GetBoundsInScreen() override;
void SetSize(const CefSize& size) OVERRIDE; void SetSize(const CefSize& size) override;
CefSize GetSize() OVERRIDE; CefSize GetSize() override;
void SetPosition(const CefPoint& position) OVERRIDE; void SetPosition(const CefPoint& position) override;
CefPoint GetPosition() OVERRIDE; CefPoint GetPosition() override;
CefSize GetPreferredSize() OVERRIDE; CefSize GetPreferredSize() override;
void SizeToPreferredSize() OVERRIDE; void SizeToPreferredSize() override;
CefSize GetMinimumSize() OVERRIDE; CefSize GetMinimumSize() override;
CefSize GetMaximumSize() OVERRIDE; CefSize GetMaximumSize() override;
int GetHeightForWidth(int width) OVERRIDE; int GetHeightForWidth(int width) override;
void InvalidateLayout() OVERRIDE; void InvalidateLayout() override;
void SetVisible(bool visible) OVERRIDE; void SetVisible(bool visible) override;
bool IsVisible() OVERRIDE; bool IsVisible() override;
bool IsDrawn() OVERRIDE; bool IsDrawn() override;
void SetEnabled(bool enabled) OVERRIDE; void SetEnabled(bool enabled) override;
bool IsEnabled() OVERRIDE; bool IsEnabled() override;
void SetFocusable(bool focusable) OVERRIDE; void SetFocusable(bool focusable) override;
bool IsFocusable() OVERRIDE; bool IsFocusable() override;
bool IsAccessibilityFocusable() OVERRIDE; bool IsAccessibilityFocusable() override;
void RequestFocus() OVERRIDE; void RequestFocus() override;
void SetBackgroundColor(cef_color_t color) OVERRIDE; void SetBackgroundColor(cef_color_t color) override;
cef_color_t GetBackgroundColor() OVERRIDE; cef_color_t GetBackgroundColor() override;
bool ConvertPointToScreen(CefPoint& point) OVERRIDE; bool ConvertPointToScreen(CefPoint& point) override;
bool ConvertPointFromScreen(CefPoint& point) OVERRIDE; bool ConvertPointFromScreen(CefPoint& point) override;
bool ConvertPointToWindow(CefPoint& point) OVERRIDE; bool ConvertPointToWindow(CefPoint& point) override;
bool ConvertPointFromWindow(CefPoint& point) OVERRIDE; bool ConvertPointFromWindow(CefPoint& point) override;
bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) override;
bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_MENU_BUTTON_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_MENU_BUTTON_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=190c731496daef9548f00ed5306c89dac367f035$ // $hash=c2d630805de3dbcb47933c566b791c0e2fb7e6d7$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_PANEL_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_PANEL_CTOCPP_H_
@ -41,69 +41,69 @@ class CefPanelCToCpp
virtual ~CefPanelCToCpp(); virtual ~CefPanelCToCpp();
// CefPanel methods. // CefPanel methods.
CefRefPtr<CefWindow> AsWindow() OVERRIDE; CefRefPtr<CefWindow> AsWindow() override;
CefRefPtr<CefFillLayout> SetToFillLayout() OVERRIDE; CefRefPtr<CefFillLayout> SetToFillLayout() override;
CefRefPtr<CefBoxLayout> SetToBoxLayout( CefRefPtr<CefBoxLayout> SetToBoxLayout(
const CefBoxLayoutSettings& settings) OVERRIDE; const CefBoxLayoutSettings& settings) override;
CefRefPtr<CefLayout> GetLayout() OVERRIDE; CefRefPtr<CefLayout> GetLayout() override;
void Layout() OVERRIDE; void Layout() override;
void AddChildView(CefRefPtr<CefView> view) OVERRIDE; void AddChildView(CefRefPtr<CefView> view) override;
void AddChildViewAt(CefRefPtr<CefView> view, int index) OVERRIDE; void AddChildViewAt(CefRefPtr<CefView> view, int index) override;
void ReorderChildView(CefRefPtr<CefView> view, int index) OVERRIDE; void ReorderChildView(CefRefPtr<CefView> view, int index) override;
void RemoveChildView(CefRefPtr<CefView> view) OVERRIDE; void RemoveChildView(CefRefPtr<CefView> view) override;
void RemoveAllChildViews() OVERRIDE; void RemoveAllChildViews() override;
size_t GetChildViewCount() OVERRIDE; size_t GetChildViewCount() override;
CefRefPtr<CefView> GetChildViewAt(int index) OVERRIDE; CefRefPtr<CefView> GetChildViewAt(int index) override;
// CefView methods. // CefView methods.
CefRefPtr<CefBrowserView> AsBrowserView() OVERRIDE; CefRefPtr<CefBrowserView> AsBrowserView() override;
CefRefPtr<CefButton> AsButton() OVERRIDE; CefRefPtr<CefButton> AsButton() override;
CefRefPtr<CefPanel> AsPanel() OVERRIDE; CefRefPtr<CefPanel> AsPanel() override;
CefRefPtr<CefScrollView> AsScrollView() OVERRIDE; CefRefPtr<CefScrollView> AsScrollView() override;
CefRefPtr<CefTextfield> AsTextfield() OVERRIDE; CefRefPtr<CefTextfield> AsTextfield() override;
CefString GetTypeString() OVERRIDE; CefString GetTypeString() override;
CefString ToString(bool include_children) OVERRIDE; CefString ToString(bool include_children) override;
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsAttached() OVERRIDE; bool IsAttached() override;
bool IsSame(CefRefPtr<CefView> that) OVERRIDE; bool IsSame(CefRefPtr<CefView> that) override;
CefRefPtr<CefViewDelegate> GetDelegate() OVERRIDE; CefRefPtr<CefViewDelegate> GetDelegate() override;
CefRefPtr<CefWindow> GetWindow() OVERRIDE; CefRefPtr<CefWindow> GetWindow() override;
int GetID() OVERRIDE; int GetID() override;
void SetID(int id) OVERRIDE; void SetID(int id) override;
int GetGroupID() OVERRIDE; int GetGroupID() override;
void SetGroupID(int group_id) OVERRIDE; void SetGroupID(int group_id) override;
CefRefPtr<CefView> GetParentView() OVERRIDE; CefRefPtr<CefView> GetParentView() override;
CefRefPtr<CefView> GetViewForID(int id) OVERRIDE; CefRefPtr<CefView> GetViewForID(int id) override;
void SetBounds(const CefRect& bounds) OVERRIDE; void SetBounds(const CefRect& bounds) override;
CefRect GetBounds() OVERRIDE; CefRect GetBounds() override;
CefRect GetBoundsInScreen() OVERRIDE; CefRect GetBoundsInScreen() override;
void SetSize(const CefSize& size) OVERRIDE; void SetSize(const CefSize& size) override;
CefSize GetSize() OVERRIDE; CefSize GetSize() override;
void SetPosition(const CefPoint& position) OVERRIDE; void SetPosition(const CefPoint& position) override;
CefPoint GetPosition() OVERRIDE; CefPoint GetPosition() override;
CefSize GetPreferredSize() OVERRIDE; CefSize GetPreferredSize() override;
void SizeToPreferredSize() OVERRIDE; void SizeToPreferredSize() override;
CefSize GetMinimumSize() OVERRIDE; CefSize GetMinimumSize() override;
CefSize GetMaximumSize() OVERRIDE; CefSize GetMaximumSize() override;
int GetHeightForWidth(int width) OVERRIDE; int GetHeightForWidth(int width) override;
void InvalidateLayout() OVERRIDE; void InvalidateLayout() override;
void SetVisible(bool visible) OVERRIDE; void SetVisible(bool visible) override;
bool IsVisible() OVERRIDE; bool IsVisible() override;
bool IsDrawn() OVERRIDE; bool IsDrawn() override;
void SetEnabled(bool enabled) OVERRIDE; void SetEnabled(bool enabled) override;
bool IsEnabled() OVERRIDE; bool IsEnabled() override;
void SetFocusable(bool focusable) OVERRIDE; void SetFocusable(bool focusable) override;
bool IsFocusable() OVERRIDE; bool IsFocusable() override;
bool IsAccessibilityFocusable() OVERRIDE; bool IsAccessibilityFocusable() override;
void RequestFocus() OVERRIDE; void RequestFocus() override;
void SetBackgroundColor(cef_color_t color) OVERRIDE; void SetBackgroundColor(cef_color_t color) override;
cef_color_t GetBackgroundColor() OVERRIDE; cef_color_t GetBackgroundColor() override;
bool ConvertPointToScreen(CefPoint& point) OVERRIDE; bool ConvertPointToScreen(CefPoint& point) override;
bool ConvertPointFromScreen(CefPoint& point) OVERRIDE; bool ConvertPointFromScreen(CefPoint& point) override;
bool ConvertPointToWindow(CefPoint& point) OVERRIDE; bool ConvertPointToWindow(CefPoint& point) override;
bool ConvertPointFromWindow(CefPoint& point) OVERRIDE; bool ConvertPointFromWindow(CefPoint& point) override;
bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) override;
bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_PANEL_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_PANEL_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=0a09eb1829f89d4f677c43909e0d4e1727ba1758$ // $hash=20f4f752402507b4573596d6759c93cd1bc7a982$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_SCROLL_VIEW_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_SCROLL_VIEW_CTOCPP_H_
@ -34,63 +34,63 @@ class CefScrollViewCToCpp : public CefCToCppRefCounted<CefScrollViewCToCpp,
virtual ~CefScrollViewCToCpp(); virtual ~CefScrollViewCToCpp();
// CefScrollView methods. // CefScrollView methods.
void SetContentView(CefRefPtr<CefView> view) OVERRIDE; void SetContentView(CefRefPtr<CefView> view) override;
CefRefPtr<CefView> GetContentView() OVERRIDE; CefRefPtr<CefView> GetContentView() override;
CefRect GetVisibleContentRect() OVERRIDE; CefRect GetVisibleContentRect() override;
bool HasHorizontalScrollbar() OVERRIDE; bool HasHorizontalScrollbar() override;
int GetHorizontalScrollbarHeight() OVERRIDE; int GetHorizontalScrollbarHeight() override;
bool HasVerticalScrollbar() OVERRIDE; bool HasVerticalScrollbar() override;
int GetVerticalScrollbarWidth() OVERRIDE; int GetVerticalScrollbarWidth() override;
// CefView methods. // CefView methods.
CefRefPtr<CefBrowserView> AsBrowserView() OVERRIDE; CefRefPtr<CefBrowserView> AsBrowserView() override;
CefRefPtr<CefButton> AsButton() OVERRIDE; CefRefPtr<CefButton> AsButton() override;
CefRefPtr<CefPanel> AsPanel() OVERRIDE; CefRefPtr<CefPanel> AsPanel() override;
CefRefPtr<CefScrollView> AsScrollView() OVERRIDE; CefRefPtr<CefScrollView> AsScrollView() override;
CefRefPtr<CefTextfield> AsTextfield() OVERRIDE; CefRefPtr<CefTextfield> AsTextfield() override;
CefString GetTypeString() OVERRIDE; CefString GetTypeString() override;
CefString ToString(bool include_children) OVERRIDE; CefString ToString(bool include_children) override;
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsAttached() OVERRIDE; bool IsAttached() override;
bool IsSame(CefRefPtr<CefView> that) OVERRIDE; bool IsSame(CefRefPtr<CefView> that) override;
CefRefPtr<CefViewDelegate> GetDelegate() OVERRIDE; CefRefPtr<CefViewDelegate> GetDelegate() override;
CefRefPtr<CefWindow> GetWindow() OVERRIDE; CefRefPtr<CefWindow> GetWindow() override;
int GetID() OVERRIDE; int GetID() override;
void SetID(int id) OVERRIDE; void SetID(int id) override;
int GetGroupID() OVERRIDE; int GetGroupID() override;
void SetGroupID(int group_id) OVERRIDE; void SetGroupID(int group_id) override;
CefRefPtr<CefView> GetParentView() OVERRIDE; CefRefPtr<CefView> GetParentView() override;
CefRefPtr<CefView> GetViewForID(int id) OVERRIDE; CefRefPtr<CefView> GetViewForID(int id) override;
void SetBounds(const CefRect& bounds) OVERRIDE; void SetBounds(const CefRect& bounds) override;
CefRect GetBounds() OVERRIDE; CefRect GetBounds() override;
CefRect GetBoundsInScreen() OVERRIDE; CefRect GetBoundsInScreen() override;
void SetSize(const CefSize& size) OVERRIDE; void SetSize(const CefSize& size) override;
CefSize GetSize() OVERRIDE; CefSize GetSize() override;
void SetPosition(const CefPoint& position) OVERRIDE; void SetPosition(const CefPoint& position) override;
CefPoint GetPosition() OVERRIDE; CefPoint GetPosition() override;
CefSize GetPreferredSize() OVERRIDE; CefSize GetPreferredSize() override;
void SizeToPreferredSize() OVERRIDE; void SizeToPreferredSize() override;
CefSize GetMinimumSize() OVERRIDE; CefSize GetMinimumSize() override;
CefSize GetMaximumSize() OVERRIDE; CefSize GetMaximumSize() override;
int GetHeightForWidth(int width) OVERRIDE; int GetHeightForWidth(int width) override;
void InvalidateLayout() OVERRIDE; void InvalidateLayout() override;
void SetVisible(bool visible) OVERRIDE; void SetVisible(bool visible) override;
bool IsVisible() OVERRIDE; bool IsVisible() override;
bool IsDrawn() OVERRIDE; bool IsDrawn() override;
void SetEnabled(bool enabled) OVERRIDE; void SetEnabled(bool enabled) override;
bool IsEnabled() OVERRIDE; bool IsEnabled() override;
void SetFocusable(bool focusable) OVERRIDE; void SetFocusable(bool focusable) override;
bool IsFocusable() OVERRIDE; bool IsFocusable() override;
bool IsAccessibilityFocusable() OVERRIDE; bool IsAccessibilityFocusable() override;
void RequestFocus() OVERRIDE; void RequestFocus() override;
void SetBackgroundColor(cef_color_t color) OVERRIDE; void SetBackgroundColor(cef_color_t color) override;
cef_color_t GetBackgroundColor() OVERRIDE; cef_color_t GetBackgroundColor() override;
bool ConvertPointToScreen(CefPoint& point) OVERRIDE; bool ConvertPointToScreen(CefPoint& point) override;
bool ConvertPointFromScreen(CefPoint& point) OVERRIDE; bool ConvertPointFromScreen(CefPoint& point) override;
bool ConvertPointToWindow(CefPoint& point) OVERRIDE; bool ConvertPointToWindow(CefPoint& point) override;
bool ConvertPointFromWindow(CefPoint& point) OVERRIDE; bool ConvertPointFromWindow(CefPoint& point) override;
bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) override;
bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_SCROLL_VIEW_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_SCROLL_VIEW_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=f57b9f72a806aecacaa984faf584fdf7c1c99301$ // $hash=e907d476bdd6717660c7e35f55ab9a1679f0f1fb$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_TEXTFIELD_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_TEXTFIELD_CTOCPP_H_
@ -34,89 +34,89 @@ class CefTextfieldCToCpp : public CefCToCppRefCounted<CefTextfieldCToCpp,
virtual ~CefTextfieldCToCpp(); virtual ~CefTextfieldCToCpp();
// CefTextfield methods. // CefTextfield methods.
void SetPasswordInput(bool password_input) OVERRIDE; void SetPasswordInput(bool password_input) override;
bool IsPasswordInput() OVERRIDE; bool IsPasswordInput() override;
void SetReadOnly(bool read_only) OVERRIDE; void SetReadOnly(bool read_only) override;
bool IsReadOnly() OVERRIDE; bool IsReadOnly() override;
CefString GetText() OVERRIDE; CefString GetText() override;
void SetText(const CefString& text) OVERRIDE; void SetText(const CefString& text) override;
void AppendText(const CefString& text) OVERRIDE; void AppendText(const CefString& text) override;
void InsertOrReplaceText(const CefString& text) OVERRIDE; void InsertOrReplaceText(const CefString& text) override;
bool HasSelection() OVERRIDE; bool HasSelection() override;
CefString GetSelectedText() OVERRIDE; CefString GetSelectedText() override;
void SelectAll(bool reversed) OVERRIDE; void SelectAll(bool reversed) override;
void ClearSelection() OVERRIDE; void ClearSelection() override;
CefRange GetSelectedRange() OVERRIDE; CefRange GetSelectedRange() override;
void SelectRange(const CefRange& range) OVERRIDE; void SelectRange(const CefRange& range) override;
size_t GetCursorPosition() OVERRIDE; size_t GetCursorPosition() override;
void SetTextColor(cef_color_t color) OVERRIDE; void SetTextColor(cef_color_t color) override;
cef_color_t GetTextColor() OVERRIDE; cef_color_t GetTextColor() override;
void SetSelectionTextColor(cef_color_t color) OVERRIDE; void SetSelectionTextColor(cef_color_t color) override;
cef_color_t GetSelectionTextColor() OVERRIDE; cef_color_t GetSelectionTextColor() override;
void SetSelectionBackgroundColor(cef_color_t color) OVERRIDE; void SetSelectionBackgroundColor(cef_color_t color) override;
cef_color_t GetSelectionBackgroundColor() OVERRIDE; cef_color_t GetSelectionBackgroundColor() override;
void SetFontList(const CefString& font_list) OVERRIDE; void SetFontList(const CefString& font_list) override;
void ApplyTextColor(cef_color_t color, const CefRange& range) OVERRIDE; void ApplyTextColor(cef_color_t color, const CefRange& range) override;
void ApplyTextStyle(cef_text_style_t style, void ApplyTextStyle(cef_text_style_t style,
bool add, bool add,
const CefRange& range) OVERRIDE; const CefRange& range) override;
bool IsCommandEnabled(cef_text_field_commands_t command_id) OVERRIDE; bool IsCommandEnabled(cef_text_field_commands_t command_id) override;
void ExecuteCommand(cef_text_field_commands_t command_id) OVERRIDE; void ExecuteCommand(cef_text_field_commands_t command_id) override;
void ClearEditHistory() OVERRIDE; void ClearEditHistory() override;
void SetPlaceholderText(const CefString& text) OVERRIDE; void SetPlaceholderText(const CefString& text) override;
CefString GetPlaceholderText() OVERRIDE; CefString GetPlaceholderText() override;
void SetPlaceholderTextColor(cef_color_t color) OVERRIDE; void SetPlaceholderTextColor(cef_color_t color) override;
void SetAccessibleName(const CefString& name) OVERRIDE; void SetAccessibleName(const CefString& name) override;
// CefView methods. // CefView methods.
CefRefPtr<CefBrowserView> AsBrowserView() OVERRIDE; CefRefPtr<CefBrowserView> AsBrowserView() override;
CefRefPtr<CefButton> AsButton() OVERRIDE; CefRefPtr<CefButton> AsButton() override;
CefRefPtr<CefPanel> AsPanel() OVERRIDE; CefRefPtr<CefPanel> AsPanel() override;
CefRefPtr<CefScrollView> AsScrollView() OVERRIDE; CefRefPtr<CefScrollView> AsScrollView() override;
CefRefPtr<CefTextfield> AsTextfield() OVERRIDE; CefRefPtr<CefTextfield> AsTextfield() override;
CefString GetTypeString() OVERRIDE; CefString GetTypeString() override;
CefString ToString(bool include_children) OVERRIDE; CefString ToString(bool include_children) override;
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsAttached() OVERRIDE; bool IsAttached() override;
bool IsSame(CefRefPtr<CefView> that) OVERRIDE; bool IsSame(CefRefPtr<CefView> that) override;
CefRefPtr<CefViewDelegate> GetDelegate() OVERRIDE; CefRefPtr<CefViewDelegate> GetDelegate() override;
CefRefPtr<CefWindow> GetWindow() OVERRIDE; CefRefPtr<CefWindow> GetWindow() override;
int GetID() OVERRIDE; int GetID() override;
void SetID(int id) OVERRIDE; void SetID(int id) override;
int GetGroupID() OVERRIDE; int GetGroupID() override;
void SetGroupID(int group_id) OVERRIDE; void SetGroupID(int group_id) override;
CefRefPtr<CefView> GetParentView() OVERRIDE; CefRefPtr<CefView> GetParentView() override;
CefRefPtr<CefView> GetViewForID(int id) OVERRIDE; CefRefPtr<CefView> GetViewForID(int id) override;
void SetBounds(const CefRect& bounds) OVERRIDE; void SetBounds(const CefRect& bounds) override;
CefRect GetBounds() OVERRIDE; CefRect GetBounds() override;
CefRect GetBoundsInScreen() OVERRIDE; CefRect GetBoundsInScreen() override;
void SetSize(const CefSize& size) OVERRIDE; void SetSize(const CefSize& size) override;
CefSize GetSize() OVERRIDE; CefSize GetSize() override;
void SetPosition(const CefPoint& position) OVERRIDE; void SetPosition(const CefPoint& position) override;
CefPoint GetPosition() OVERRIDE; CefPoint GetPosition() override;
CefSize GetPreferredSize() OVERRIDE; CefSize GetPreferredSize() override;
void SizeToPreferredSize() OVERRIDE; void SizeToPreferredSize() override;
CefSize GetMinimumSize() OVERRIDE; CefSize GetMinimumSize() override;
CefSize GetMaximumSize() OVERRIDE; CefSize GetMaximumSize() override;
int GetHeightForWidth(int width) OVERRIDE; int GetHeightForWidth(int width) override;
void InvalidateLayout() OVERRIDE; void InvalidateLayout() override;
void SetVisible(bool visible) OVERRIDE; void SetVisible(bool visible) override;
bool IsVisible() OVERRIDE; bool IsVisible() override;
bool IsDrawn() OVERRIDE; bool IsDrawn() override;
void SetEnabled(bool enabled) OVERRIDE; void SetEnabled(bool enabled) override;
bool IsEnabled() OVERRIDE; bool IsEnabled() override;
void SetFocusable(bool focusable) OVERRIDE; void SetFocusable(bool focusable) override;
bool IsFocusable() OVERRIDE; bool IsFocusable() override;
bool IsAccessibilityFocusable() OVERRIDE; bool IsAccessibilityFocusable() override;
void RequestFocus() OVERRIDE; void RequestFocus() override;
void SetBackgroundColor(cef_color_t color) OVERRIDE; void SetBackgroundColor(cef_color_t color) override;
cef_color_t GetBackgroundColor() OVERRIDE; cef_color_t GetBackgroundColor() override;
bool ConvertPointToScreen(CefPoint& point) OVERRIDE; bool ConvertPointToScreen(CefPoint& point) override;
bool ConvertPointFromScreen(CefPoint& point) OVERRIDE; bool ConvertPointFromScreen(CefPoint& point) override;
bool ConvertPointToWindow(CefPoint& point) OVERRIDE; bool ConvertPointToWindow(CefPoint& point) override;
bool ConvertPointFromWindow(CefPoint& point) OVERRIDE; bool ConvertPointFromWindow(CefPoint& point) override;
bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) override;
bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_TEXTFIELD_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_TEXTFIELD_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=841ccd4760ce1b41c48476df1575b1ac61661a23$ // $hash=a821d193174f4b6e06db1a003aece65eb1e0db02$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_VIEW_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_VIEW_CTOCPP_H_
@ -45,54 +45,54 @@ class CefViewCToCpp
virtual ~CefViewCToCpp(); virtual ~CefViewCToCpp();
// CefView methods. // CefView methods.
CefRefPtr<CefBrowserView> AsBrowserView() OVERRIDE; CefRefPtr<CefBrowserView> AsBrowserView() override;
CefRefPtr<CefButton> AsButton() OVERRIDE; CefRefPtr<CefButton> AsButton() override;
CefRefPtr<CefPanel> AsPanel() OVERRIDE; CefRefPtr<CefPanel> AsPanel() override;
CefRefPtr<CefScrollView> AsScrollView() OVERRIDE; CefRefPtr<CefScrollView> AsScrollView() override;
CefRefPtr<CefTextfield> AsTextfield() OVERRIDE; CefRefPtr<CefTextfield> AsTextfield() override;
CefString GetTypeString() OVERRIDE; CefString GetTypeString() override;
CefString ToString(bool include_children) OVERRIDE; CefString ToString(bool include_children) override;
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsAttached() OVERRIDE; bool IsAttached() override;
bool IsSame(CefRefPtr<CefView> that) OVERRIDE; bool IsSame(CefRefPtr<CefView> that) override;
CefRefPtr<CefViewDelegate> GetDelegate() OVERRIDE; CefRefPtr<CefViewDelegate> GetDelegate() override;
CefRefPtr<CefWindow> GetWindow() OVERRIDE; CefRefPtr<CefWindow> GetWindow() override;
int GetID() OVERRIDE; int GetID() override;
void SetID(int id) OVERRIDE; void SetID(int id) override;
int GetGroupID() OVERRIDE; int GetGroupID() override;
void SetGroupID(int group_id) OVERRIDE; void SetGroupID(int group_id) override;
CefRefPtr<CefView> GetParentView() OVERRIDE; CefRefPtr<CefView> GetParentView() override;
CefRefPtr<CefView> GetViewForID(int id) OVERRIDE; CefRefPtr<CefView> GetViewForID(int id) override;
void SetBounds(const CefRect& bounds) OVERRIDE; void SetBounds(const CefRect& bounds) override;
CefRect GetBounds() OVERRIDE; CefRect GetBounds() override;
CefRect GetBoundsInScreen() OVERRIDE; CefRect GetBoundsInScreen() override;
void SetSize(const CefSize& size) OVERRIDE; void SetSize(const CefSize& size) override;
CefSize GetSize() OVERRIDE; CefSize GetSize() override;
void SetPosition(const CefPoint& position) OVERRIDE; void SetPosition(const CefPoint& position) override;
CefPoint GetPosition() OVERRIDE; CefPoint GetPosition() override;
CefSize GetPreferredSize() OVERRIDE; CefSize GetPreferredSize() override;
void SizeToPreferredSize() OVERRIDE; void SizeToPreferredSize() override;
CefSize GetMinimumSize() OVERRIDE; CefSize GetMinimumSize() override;
CefSize GetMaximumSize() OVERRIDE; CefSize GetMaximumSize() override;
int GetHeightForWidth(int width) OVERRIDE; int GetHeightForWidth(int width) override;
void InvalidateLayout() OVERRIDE; void InvalidateLayout() override;
void SetVisible(bool visible) OVERRIDE; void SetVisible(bool visible) override;
bool IsVisible() OVERRIDE; bool IsVisible() override;
bool IsDrawn() OVERRIDE; bool IsDrawn() override;
void SetEnabled(bool enabled) OVERRIDE; void SetEnabled(bool enabled) override;
bool IsEnabled() OVERRIDE; bool IsEnabled() override;
void SetFocusable(bool focusable) OVERRIDE; void SetFocusable(bool focusable) override;
bool IsFocusable() OVERRIDE; bool IsFocusable() override;
bool IsAccessibilityFocusable() OVERRIDE; bool IsAccessibilityFocusable() override;
void RequestFocus() OVERRIDE; void RequestFocus() override;
void SetBackgroundColor(cef_color_t color) OVERRIDE; void SetBackgroundColor(cef_color_t color) override;
cef_color_t GetBackgroundColor() OVERRIDE; cef_color_t GetBackgroundColor() override;
bool ConvertPointToScreen(CefPoint& point) OVERRIDE; bool ConvertPointToScreen(CefPoint& point) override;
bool ConvertPointFromScreen(CefPoint& point) OVERRIDE; bool ConvertPointFromScreen(CefPoint& point) override;
bool ConvertPointToWindow(CefPoint& point) OVERRIDE; bool ConvertPointToWindow(CefPoint& point) override;
bool ConvertPointFromWindow(CefPoint& point) OVERRIDE; bool ConvertPointFromWindow(CefPoint& point) override;
bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) override;
bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_VIEW_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_VIEW_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=6aa7373f97dc08f125b239bd6018bc9ad2c52c3c$ // $hash=f2fbf4be1755ed8793c2d471d65eddbdf4ba148b$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_WINDOW_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_WINDOW_CTOCPP_H_
@ -34,116 +34,116 @@ class CefWindowCToCpp
virtual ~CefWindowCToCpp(); virtual ~CefWindowCToCpp();
// CefWindow methods. // CefWindow methods.
void Show() OVERRIDE; void Show() override;
void Hide() OVERRIDE; void Hide() override;
void CenterWindow(const CefSize& size) OVERRIDE; void CenterWindow(const CefSize& size) override;
void Close() OVERRIDE; void Close() override;
bool IsClosed() OVERRIDE; bool IsClosed() override;
void Activate() OVERRIDE; void Activate() override;
void Deactivate() OVERRIDE; void Deactivate() override;
bool IsActive() OVERRIDE; bool IsActive() override;
void BringToTop() OVERRIDE; void BringToTop() override;
void SetAlwaysOnTop(bool on_top) OVERRIDE; void SetAlwaysOnTop(bool on_top) override;
bool IsAlwaysOnTop() OVERRIDE; bool IsAlwaysOnTop() override;
void Maximize() OVERRIDE; void Maximize() override;
void Minimize() OVERRIDE; void Minimize() override;
void Restore() OVERRIDE; void Restore() override;
void SetFullscreen(bool fullscreen) OVERRIDE; void SetFullscreen(bool fullscreen) override;
bool IsMaximized() OVERRIDE; bool IsMaximized() override;
bool IsMinimized() OVERRIDE; bool IsMinimized() override;
bool IsFullscreen() OVERRIDE; bool IsFullscreen() override;
void SetTitle(const CefString& title) OVERRIDE; void SetTitle(const CefString& title) override;
CefString GetTitle() OVERRIDE; CefString GetTitle() override;
void SetWindowIcon(CefRefPtr<CefImage> image) OVERRIDE; void SetWindowIcon(CefRefPtr<CefImage> image) override;
CefRefPtr<CefImage> GetWindowIcon() OVERRIDE; CefRefPtr<CefImage> GetWindowIcon() override;
void SetWindowAppIcon(CefRefPtr<CefImage> image) OVERRIDE; void SetWindowAppIcon(CefRefPtr<CefImage> image) override;
CefRefPtr<CefImage> GetWindowAppIcon() OVERRIDE; CefRefPtr<CefImage> GetWindowAppIcon() override;
void ShowMenu(CefRefPtr<CefMenuModel> menu_model, void ShowMenu(CefRefPtr<CefMenuModel> menu_model,
const CefPoint& screen_point, const CefPoint& screen_point,
cef_menu_anchor_position_t anchor_position) OVERRIDE; cef_menu_anchor_position_t anchor_position) override;
void CancelMenu() OVERRIDE; void CancelMenu() override;
CefRefPtr<CefDisplay> GetDisplay() OVERRIDE; CefRefPtr<CefDisplay> GetDisplay() override;
CefRect GetClientAreaBoundsInScreen() OVERRIDE; CefRect GetClientAreaBoundsInScreen() override;
void SetDraggableRegions( void SetDraggableRegions(
const std::vector<CefDraggableRegion>& regions) OVERRIDE; const std::vector<CefDraggableRegion>& regions) override;
CefWindowHandle GetWindowHandle() OVERRIDE; CefWindowHandle GetWindowHandle() override;
void SendKeyPress(int key_code, uint32 event_flags) OVERRIDE; void SendKeyPress(int key_code, uint32 event_flags) override;
void SendMouseMove(int screen_x, int screen_y) OVERRIDE; void SendMouseMove(int screen_x, int screen_y) override;
void SendMouseEvents(cef_mouse_button_type_t button, void SendMouseEvents(cef_mouse_button_type_t button,
bool mouse_down, bool mouse_down,
bool mouse_up) OVERRIDE; bool mouse_up) override;
void SetAccelerator(int command_id, void SetAccelerator(int command_id,
int key_code, int key_code,
bool shift_pressed, bool shift_pressed,
bool ctrl_pressed, bool ctrl_pressed,
bool alt_pressed) OVERRIDE; bool alt_pressed) override;
void RemoveAccelerator(int command_id) OVERRIDE; void RemoveAccelerator(int command_id) override;
void RemoveAllAccelerators() OVERRIDE; void RemoveAllAccelerators() override;
// CefPanel methods. // CefPanel methods.
CefRefPtr<CefWindow> AsWindow() OVERRIDE; CefRefPtr<CefWindow> AsWindow() override;
CefRefPtr<CefFillLayout> SetToFillLayout() OVERRIDE; CefRefPtr<CefFillLayout> SetToFillLayout() override;
CefRefPtr<CefBoxLayout> SetToBoxLayout( CefRefPtr<CefBoxLayout> SetToBoxLayout(
const CefBoxLayoutSettings& settings) OVERRIDE; const CefBoxLayoutSettings& settings) override;
CefRefPtr<CefLayout> GetLayout() OVERRIDE; CefRefPtr<CefLayout> GetLayout() override;
void Layout() OVERRIDE; void Layout() override;
void AddChildView(CefRefPtr<CefView> view) OVERRIDE; void AddChildView(CefRefPtr<CefView> view) override;
void AddChildViewAt(CefRefPtr<CefView> view, int index) OVERRIDE; void AddChildViewAt(CefRefPtr<CefView> view, int index) override;
void ReorderChildView(CefRefPtr<CefView> view, int index) OVERRIDE; void ReorderChildView(CefRefPtr<CefView> view, int index) override;
void RemoveChildView(CefRefPtr<CefView> view) OVERRIDE; void RemoveChildView(CefRefPtr<CefView> view) override;
void RemoveAllChildViews() OVERRIDE; void RemoveAllChildViews() override;
size_t GetChildViewCount() OVERRIDE; size_t GetChildViewCount() override;
CefRefPtr<CefView> GetChildViewAt(int index) OVERRIDE; CefRefPtr<CefView> GetChildViewAt(int index) override;
// CefView methods. // CefView methods.
CefRefPtr<CefBrowserView> AsBrowserView() OVERRIDE; CefRefPtr<CefBrowserView> AsBrowserView() override;
CefRefPtr<CefButton> AsButton() OVERRIDE; CefRefPtr<CefButton> AsButton() override;
CefRefPtr<CefPanel> AsPanel() OVERRIDE; CefRefPtr<CefPanel> AsPanel() override;
CefRefPtr<CefScrollView> AsScrollView() OVERRIDE; CefRefPtr<CefScrollView> AsScrollView() override;
CefRefPtr<CefTextfield> AsTextfield() OVERRIDE; CefRefPtr<CefTextfield> AsTextfield() override;
CefString GetTypeString() OVERRIDE; CefString GetTypeString() override;
CefString ToString(bool include_children) OVERRIDE; CefString ToString(bool include_children) override;
bool IsValid() OVERRIDE; bool IsValid() override;
bool IsAttached() OVERRIDE; bool IsAttached() override;
bool IsSame(CefRefPtr<CefView> that) OVERRIDE; bool IsSame(CefRefPtr<CefView> that) override;
CefRefPtr<CefViewDelegate> GetDelegate() OVERRIDE; CefRefPtr<CefViewDelegate> GetDelegate() override;
CefRefPtr<CefWindow> GetWindow() OVERRIDE; CefRefPtr<CefWindow> GetWindow() override;
int GetID() OVERRIDE; int GetID() override;
void SetID(int id) OVERRIDE; void SetID(int id) override;
int GetGroupID() OVERRIDE; int GetGroupID() override;
void SetGroupID(int group_id) OVERRIDE; void SetGroupID(int group_id) override;
CefRefPtr<CefView> GetParentView() OVERRIDE; CefRefPtr<CefView> GetParentView() override;
CefRefPtr<CefView> GetViewForID(int id) OVERRIDE; CefRefPtr<CefView> GetViewForID(int id) override;
void SetBounds(const CefRect& bounds) OVERRIDE; void SetBounds(const CefRect& bounds) override;
CefRect GetBounds() OVERRIDE; CefRect GetBounds() override;
CefRect GetBoundsInScreen() OVERRIDE; CefRect GetBoundsInScreen() override;
void SetSize(const CefSize& size) OVERRIDE; void SetSize(const CefSize& size) override;
CefSize GetSize() OVERRIDE; CefSize GetSize() override;
void SetPosition(const CefPoint& position) OVERRIDE; void SetPosition(const CefPoint& position) override;
CefPoint GetPosition() OVERRIDE; CefPoint GetPosition() override;
CefSize GetPreferredSize() OVERRIDE; CefSize GetPreferredSize() override;
void SizeToPreferredSize() OVERRIDE; void SizeToPreferredSize() override;
CefSize GetMinimumSize() OVERRIDE; CefSize GetMinimumSize() override;
CefSize GetMaximumSize() OVERRIDE; CefSize GetMaximumSize() override;
int GetHeightForWidth(int width) OVERRIDE; int GetHeightForWidth(int width) override;
void InvalidateLayout() OVERRIDE; void InvalidateLayout() override;
void SetVisible(bool visible) OVERRIDE; void SetVisible(bool visible) override;
bool IsVisible() OVERRIDE; bool IsVisible() override;
bool IsDrawn() OVERRIDE; bool IsDrawn() override;
void SetEnabled(bool enabled) OVERRIDE; void SetEnabled(bool enabled) override;
bool IsEnabled() OVERRIDE; bool IsEnabled() override;
void SetFocusable(bool focusable) OVERRIDE; void SetFocusable(bool focusable) override;
bool IsFocusable() OVERRIDE; bool IsFocusable() override;
bool IsAccessibilityFocusable() OVERRIDE; bool IsAccessibilityFocusable() override;
void RequestFocus() OVERRIDE; void RequestFocus() override;
void SetBackgroundColor(cef_color_t color) OVERRIDE; void SetBackgroundColor(cef_color_t color) override;
cef_color_t GetBackgroundColor() OVERRIDE; cef_color_t GetBackgroundColor() override;
bool ConvertPointToScreen(CefPoint& point) OVERRIDE; bool ConvertPointToScreen(CefPoint& point) override;
bool ConvertPointFromScreen(CefPoint& point) OVERRIDE; bool ConvertPointFromScreen(CefPoint& point) override;
bool ConvertPointToWindow(CefPoint& point) OVERRIDE; bool ConvertPointToWindow(CefPoint& point) override;
bool ConvertPointFromWindow(CefPoint& point) OVERRIDE; bool ConvertPointFromWindow(CefPoint& point) override;
bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointToView(CefRefPtr<CefView> view, CefPoint& point) override;
bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) OVERRIDE; bool ConvertPointFromView(CefRefPtr<CefView> view, CefPoint& point) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_WINDOW_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_VIEWS_WINDOW_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=f5669491fd2475dc9755a6e624a737312711d2d3$ // $hash=097d4efa73574d6bb5edac6915296883a5ccdc29$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_WAITABLE_EVENT_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_WAITABLE_EVENT_CTOCPP_H_
@ -35,11 +35,11 @@ class CefWaitableEventCToCpp
virtual ~CefWaitableEventCToCpp(); virtual ~CefWaitableEventCToCpp();
// CefWaitableEvent methods. // CefWaitableEvent methods.
void Reset() OVERRIDE; void Reset() override;
void Signal() OVERRIDE; void Signal() override;
bool IsSignaled() OVERRIDE; bool IsSignaled() override;
void Wait() OVERRIDE; void Wait() override;
bool TimedWait(int64 max_ms) OVERRIDE; bool TimedWait(int64 max_ms) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_WAITABLE_EVENT_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_WAITABLE_EVENT_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=012c4dec0875476356fe25c479539a4481a550c3$ // $hash=2668b4409013efe51d31cfae5fce743530cdb994$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_WEB_PLUGIN_INFO_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_WEB_PLUGIN_INFO_CTOCPP_H_
@ -37,10 +37,10 @@ class CefWebPluginInfoCToCpp
virtual ~CefWebPluginInfoCToCpp(); virtual ~CefWebPluginInfoCToCpp();
// CefWebPluginInfo methods. // CefWebPluginInfo methods.
CefString GetName() OVERRIDE; CefString GetName() override;
CefString GetPath() OVERRIDE; CefString GetPath() override;
CefString GetVersion() OVERRIDE; CefString GetVersion() override;
CefString GetDescription() OVERRIDE; CefString GetDescription() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_WEB_PLUGIN_INFO_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_WEB_PLUGIN_INFO_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=4bf290893db30f92b41162cf2cd47457f94b9940$ // $hash=2f81d385c4a2501d7bca5ead500d66e2c8038942$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_X509CERT_PRINCIPAL_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_X509CERT_PRINCIPAL_CTOCPP_H_
@ -36,15 +36,15 @@ class CefX509CertPrincipalCToCpp
virtual ~CefX509CertPrincipalCToCpp(); virtual ~CefX509CertPrincipalCToCpp();
// CefX509CertPrincipal methods. // CefX509CertPrincipal methods.
CefString GetDisplayName() OVERRIDE; CefString GetDisplayName() override;
CefString GetCommonName() OVERRIDE; CefString GetCommonName() override;
CefString GetLocalityName() OVERRIDE; CefString GetLocalityName() override;
CefString GetStateOrProvinceName() OVERRIDE; CefString GetStateOrProvinceName() override;
CefString GetCountryName() OVERRIDE; CefString GetCountryName() override;
void GetStreetAddresses(std::vector<CefString>& addresses) OVERRIDE; void GetStreetAddresses(std::vector<CefString>& addresses) override;
void GetOrganizationNames(std::vector<CefString>& names) OVERRIDE; void GetOrganizationNames(std::vector<CefString>& names) override;
void GetOrganizationUnitNames(std::vector<CefString>& names) OVERRIDE; void GetOrganizationUnitNames(std::vector<CefString>& names) override;
void GetDomainComponents(std::vector<CefString>& components) OVERRIDE; void GetDomainComponents(std::vector<CefString>& components) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_X509CERT_PRINCIPAL_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_X509CERT_PRINCIPAL_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=96506815984e01c7670fededdc24ea0b5b6b4cee$ // $hash=75aea2f12bf3761e97b99ebccc2f9cce6685fc70$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_X509CERTIFICATE_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_X509CERTIFICATE_CTOCPP_H_
@ -35,16 +35,16 @@ class CefX509CertificateCToCpp
virtual ~CefX509CertificateCToCpp(); virtual ~CefX509CertificateCToCpp();
// CefX509Certificate methods. // CefX509Certificate methods.
CefRefPtr<CefX509CertPrincipal> GetSubject() OVERRIDE; CefRefPtr<CefX509CertPrincipal> GetSubject() override;
CefRefPtr<CefX509CertPrincipal> GetIssuer() OVERRIDE; CefRefPtr<CefX509CertPrincipal> GetIssuer() override;
CefRefPtr<CefBinaryValue> GetSerialNumber() OVERRIDE; CefRefPtr<CefBinaryValue> GetSerialNumber() override;
CefTime GetValidStart() OVERRIDE; CefTime GetValidStart() override;
CefTime GetValidExpiry() OVERRIDE; CefTime GetValidExpiry() override;
CefRefPtr<CefBinaryValue> GetDEREncoded() OVERRIDE; CefRefPtr<CefBinaryValue> GetDEREncoded() override;
CefRefPtr<CefBinaryValue> GetPEMEncoded() OVERRIDE; CefRefPtr<CefBinaryValue> GetPEMEncoded() override;
size_t GetIssuerChainSize() OVERRIDE; size_t GetIssuerChainSize() override;
void GetDEREncodedIssuerChain(IssuerChainBinaryList& chain) OVERRIDE; void GetDEREncodedIssuerChain(IssuerChainBinaryList& chain) override;
void GetPEMEncodedIssuerChain(IssuerChainBinaryList& chain) OVERRIDE; void GetPEMEncodedIssuerChain(IssuerChainBinaryList& chain) override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_X509CERTIFICATE_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_X509CERTIFICATE_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=ba444818045821388677e80af1f848b3938a7f1b$ // $hash=d45a64d75c33d05c4fc07445cb809d6eedd9a597$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_XML_READER_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_XML_READER_CTOCPP_H_
@ -34,37 +34,37 @@ class CefXmlReaderCToCpp : public CefCToCppRefCounted<CefXmlReaderCToCpp,
virtual ~CefXmlReaderCToCpp(); virtual ~CefXmlReaderCToCpp();
// CefXmlReader methods. // CefXmlReader methods.
bool MoveToNextNode() OVERRIDE; bool MoveToNextNode() override;
bool Close() OVERRIDE; bool Close() override;
bool HasError() OVERRIDE; bool HasError() override;
CefString GetError() OVERRIDE; CefString GetError() override;
NodeType GetType() OVERRIDE; NodeType GetType() override;
int GetDepth() OVERRIDE; int GetDepth() override;
CefString GetLocalName() OVERRIDE; CefString GetLocalName() override;
CefString GetPrefix() OVERRIDE; CefString GetPrefix() override;
CefString GetQualifiedName() OVERRIDE; CefString GetQualifiedName() override;
CefString GetNamespaceURI() OVERRIDE; CefString GetNamespaceURI() override;
CefString GetBaseURI() OVERRIDE; CefString GetBaseURI() override;
CefString GetXmlLang() OVERRIDE; CefString GetXmlLang() override;
bool IsEmptyElement() OVERRIDE; bool IsEmptyElement() override;
bool HasValue() OVERRIDE; bool HasValue() override;
CefString GetValue() OVERRIDE; CefString GetValue() override;
bool HasAttributes() OVERRIDE; bool HasAttributes() override;
size_t GetAttributeCount() OVERRIDE; size_t GetAttributeCount() override;
CefString GetAttribute(int index) OVERRIDE; CefString GetAttribute(int index) override;
CefString GetAttribute(const CefString& qualifiedName) OVERRIDE; CefString GetAttribute(const CefString& qualifiedName) override;
CefString GetAttribute(const CefString& localName, CefString GetAttribute(const CefString& localName,
const CefString& namespaceURI) OVERRIDE; const CefString& namespaceURI) override;
CefString GetInnerXml() OVERRIDE; CefString GetInnerXml() override;
CefString GetOuterXml() OVERRIDE; CefString GetOuterXml() override;
int GetLineNumber() OVERRIDE; int GetLineNumber() override;
bool MoveToAttribute(int index) OVERRIDE; bool MoveToAttribute(int index) override;
bool MoveToAttribute(const CefString& qualifiedName) OVERRIDE; bool MoveToAttribute(const CefString& qualifiedName) override;
bool MoveToAttribute(const CefString& localName, bool MoveToAttribute(const CefString& localName,
const CefString& namespaceURI) OVERRIDE; const CefString& namespaceURI) override;
bool MoveToFirstAttribute() OVERRIDE; bool MoveToFirstAttribute() override;
bool MoveToNextAttribute() OVERRIDE; bool MoveToNextAttribute() override;
bool MoveToCarryingElement() OVERRIDE; bool MoveToCarryingElement() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_XML_READER_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_XML_READER_CTOCPP_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory // implementations. See the translator.README.txt file in the tools directory
// for more information. // for more information.
// //
// $hash=e405cb0ca0caf967b58bc31d542bf346d6989022$ // $hash=ec35ddcbceb5b6dd205c0e464b11c55d87b36eae$
// //
#ifndef CEF_LIBCEF_DLL_CTOCPP_ZIP_READER_CTOCPP_H_ #ifndef CEF_LIBCEF_DLL_CTOCPP_ZIP_READER_CTOCPP_H_
@ -34,18 +34,18 @@ class CefZipReaderCToCpp : public CefCToCppRefCounted<CefZipReaderCToCpp,
virtual ~CefZipReaderCToCpp(); virtual ~CefZipReaderCToCpp();
// CefZipReader methods. // CefZipReader methods.
bool MoveToFirstFile() OVERRIDE; bool MoveToFirstFile() override;
bool MoveToNextFile() OVERRIDE; bool MoveToNextFile() override;
bool MoveToFile(const CefString& fileName, bool caseSensitive) OVERRIDE; bool MoveToFile(const CefString& fileName, bool caseSensitive) override;
bool Close() OVERRIDE; bool Close() override;
CefString GetFileName() OVERRIDE; CefString GetFileName() override;
int64 GetFileSize() OVERRIDE; int64 GetFileSize() override;
CefTime GetFileLastModified() OVERRIDE; CefTime GetFileLastModified() override;
bool OpenFile(const CefString& password) OVERRIDE; bool OpenFile(const CefString& password) override;
bool CloseFile() OVERRIDE; bool CloseFile() override;
int ReadFile(void* buffer, size_t bufferSize) OVERRIDE; int ReadFile(void* buffer, size_t bufferSize) override;
int64 Tell() OVERRIDE; int64 Tell() override;
bool Eof() OVERRIDE; bool Eof() override;
}; };
#endif // CEF_LIBCEF_DLL_CTOCPP_ZIP_READER_CTOCPP_H_ #endif // CEF_LIBCEF_DLL_CTOCPP_ZIP_READER_CTOCPP_H_

View File

@ -12,7 +12,7 @@ class CefClosureTask : public CefTask {
explicit CefClosureTask(const base::Closure& closure) : closure_(closure) {} explicit CefClosureTask(const base::Closure& closure) : closure_(closure) {}
// CefTask method // CefTask method
virtual void Execute() OVERRIDE { virtual void Execute() override {
closure_.Run(); closure_.Run();
closure_.Reset(); closure_.Reset();
} }

View File

@ -82,7 +82,7 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
DCHECK(!router_); DCHECK(!router_);
} }
void Success(const CefString& response) OVERRIDE { void Success(const CefString& response) override {
if (!CefCurrentlyOn(TID_UI)) { if (!CefCurrentlyOn(TID_UI)) {
// Must execute on the UI thread to access member variables. // Must execute on the UI thread to access member variables.
CefPostTask(TID_UI, base::Bind(&CallbackImpl::Success, this, response)); CefPostTask(TID_UI, base::Bind(&CallbackImpl::Success, this, response));
@ -102,7 +102,7 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
} }
} }
void Failure(int error_code, const CefString& error_message) OVERRIDE { void Failure(int error_code, const CefString& error_message) override {
if (!CefCurrentlyOn(TID_UI)) { if (!CefCurrentlyOn(TID_UI)) {
// Must execute on the UI thread to access member variables. // Must execute on the UI thread to access member variables.
CefPostTask(TID_UI, base::Bind(&CallbackImpl::Failure, this, error_code, CefPostTask(TID_UI, base::Bind(&CallbackImpl::Failure, this, error_code,
@ -148,7 +148,7 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
DCHECK(browser_query_info_map_.empty()); DCHECK(browser_query_info_map_.empty());
} }
bool AddHandler(Handler* handler, bool first) OVERRIDE { bool AddHandler(Handler* handler, bool first) override {
CEF_REQUIRE_UI_THREAD(); CEF_REQUIRE_UI_THREAD();
if (handler_set_.find(handler) == handler_set_.end()) { if (handler_set_.find(handler) == handler_set_.end()) {
handler_set_.insert(first ? handler_set_.begin() : handler_set_.end(), handler_set_.insert(first ? handler_set_.begin() : handler_set_.end(),
@ -158,7 +158,7 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
return false; return false;
} }
bool RemoveHandler(Handler* handler) OVERRIDE { bool RemoveHandler(Handler* handler) override {
CEF_REQUIRE_UI_THREAD(); CEF_REQUIRE_UI_THREAD();
if (handler_set_.erase(handler) > 0) { if (handler_set_.erase(handler) > 0) {
CancelPendingFor(nullptr, handler, true); CancelPendingFor(nullptr, handler, true);
@ -167,12 +167,12 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
return false; return false;
} }
void CancelPending(CefRefPtr<CefBrowser> browser, Handler* handler) OVERRIDE { void CancelPending(CefRefPtr<CefBrowser> browser, Handler* handler) override {
CancelPendingFor(browser, handler, true); CancelPendingFor(browser, handler, true);
} }
int GetPendingCount(CefRefPtr<CefBrowser> browser, int GetPendingCount(CefRefPtr<CefBrowser> browser,
Handler* handler) OVERRIDE { Handler* handler) override {
CEF_REQUIRE_UI_THREAD(); CEF_REQUIRE_UI_THREAD();
if (browser_query_info_map_.empty()) if (browser_query_info_map_.empty())
@ -187,7 +187,7 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
bool OnNextInfo(int browser_id, bool OnNextInfo(int browser_id,
InfoIdType info_id, InfoIdType info_id,
InfoObjectType info, InfoObjectType info,
bool* remove) OVERRIDE { bool* remove) override {
if (info->handler == handler_) if (info->handler == handler_)
count_++; count_++;
return true; return true;
@ -221,16 +221,16 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
return 0; return 0;
} }
void OnBeforeClose(CefRefPtr<CefBrowser> browser) OVERRIDE { void OnBeforeClose(CefRefPtr<CefBrowser> browser) override {
CancelPendingFor(browser, nullptr, false); CancelPendingFor(browser, nullptr, false);
} }
void OnRenderProcessTerminated(CefRefPtr<CefBrowser> browser) OVERRIDE { void OnRenderProcessTerminated(CefRefPtr<CefBrowser> browser) override {
CancelPendingFor(browser, nullptr, false); CancelPendingFor(browser, nullptr, false);
} }
void OnBeforeBrowse(CefRefPtr<CefBrowser> browser, void OnBeforeBrowse(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame) OVERRIDE { CefRefPtr<CefFrame> frame) override {
if (frame->IsMain()) if (frame->IsMain())
CancelPendingFor(browser, nullptr, false); CancelPendingFor(browser, nullptr, false);
} }
@ -238,7 +238,7 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
bool OnProcessMessageReceived(CefRefPtr<CefBrowser> browser, bool OnProcessMessageReceived(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame, CefRefPtr<CefFrame> frame,
CefProcessId source_process, CefProcessId source_process,
CefRefPtr<CefProcessMessage> message) OVERRIDE { CefRefPtr<CefProcessMessage> message) override {
CEF_REQUIRE_UI_THREAD(); CEF_REQUIRE_UI_THREAD();
const std::string& message_name = message->GetName(); const std::string& message_name = message->GetName();
@ -359,7 +359,7 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
bool OnNextInfo(int browser_id, bool OnNextInfo(int browser_id,
InfoIdType info_id, InfoIdType info_id,
InfoObjectType info, InfoObjectType info,
bool* remove) OVERRIDE { bool* remove) override {
*remove = removed_ = (always_remove_ || !info->persistent); *remove = removed_ = (always_remove_ || !info->persistent);
return true; return true;
} }
@ -503,7 +503,7 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
bool OnNextInfo(int browser_id, bool OnNextInfo(int browser_id,
InfoIdType info_id, InfoIdType info_id,
InfoObjectType info, InfoObjectType info,
bool* remove) OVERRIDE { bool* remove) override {
if (!handler_ || info->handler == handler_) { if (!handler_ || info->handler == handler_) {
*remove = true; *remove = true;
router_->CancelQuery(info_id, info, notify_renderer_); router_->CancelQuery(info_id, info, notify_renderer_);
@ -542,7 +542,7 @@ class CefMessageRouterBrowserSideImpl : public CefMessageRouterBrowserSide {
bool OnNextInfo(int browser_id, bool OnNextInfo(int browser_id,
InfoIdType info_id, InfoIdType info_id,
InfoObjectType info, InfoObjectType info,
bool* remove) OVERRIDE { bool* remove) override {
if (info->context_id == context_id_ && if (info->context_id == context_id_ &&
(request_id_ == kReservedId || info->request_id == request_id_)) { (request_id_ == kReservedId || info->request_id == request_id_)) {
*remove = true; *remove = true;
@ -599,7 +599,7 @@ class CefMessageRouterRendererSideImpl : public CefMessageRouterRendererSide {
CefRefPtr<CefV8Value> object, CefRefPtr<CefV8Value> object,
const CefV8ValueList& arguments, const CefV8ValueList& arguments,
CefRefPtr<CefV8Value>& retval, CefRefPtr<CefV8Value>& retval,
CefString& exception) OVERRIDE { CefString& exception) override {
if (name == config_.js_query_function) { if (name == config_.js_query_function) {
if (arguments.size() != 1 || !arguments[0]->IsObject()) { if (arguments.size() != 1 || !arguments[0]->IsObject()) {
exception = "Invalid arguments; expecting a single object"; exception = "Invalid arguments; expecting a single object";
@ -707,7 +707,7 @@ class CefMessageRouterRendererSideImpl : public CefMessageRouterRendererSide {
virtual ~CefMessageRouterRendererSideImpl() {} virtual ~CefMessageRouterRendererSideImpl() {}
int GetPendingCount(CefRefPtr<CefBrowser> browser, int GetPendingCount(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefV8Context> context) OVERRIDE { CefRefPtr<CefV8Context> context) override {
CEF_REQUIRE_RENDERER_THREAD(); CEF_REQUIRE_RENDERER_THREAD();
if (browser_request_info_map_.empty()) if (browser_request_info_map_.empty())
@ -726,7 +726,7 @@ class CefMessageRouterRendererSideImpl : public CefMessageRouterRendererSide {
bool OnNextInfo(int browser_id, bool OnNextInfo(int browser_id,
InfoIdType info_id, InfoIdType info_id,
InfoObjectType info, InfoObjectType info,
bool* remove) OVERRIDE { bool* remove) override {
if (info_id.first == context_id_) if (info_id.first == context_id_)
count_++; count_++;
return true; return true;
@ -762,7 +762,7 @@ class CefMessageRouterRendererSideImpl : public CefMessageRouterRendererSide {
void OnContextCreated(CefRefPtr<CefBrowser> browser, void OnContextCreated(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame, CefRefPtr<CefFrame> frame,
CefRefPtr<CefV8Context> context) OVERRIDE { CefRefPtr<CefV8Context> context) override {
CEF_REQUIRE_RENDERER_THREAD(); CEF_REQUIRE_RENDERER_THREAD();
// Register function handlers with the 'window' object. // Register function handlers with the 'window' object.
@ -787,7 +787,7 @@ class CefMessageRouterRendererSideImpl : public CefMessageRouterRendererSide {
void OnContextReleased(CefRefPtr<CefBrowser> browser, void OnContextReleased(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame, CefRefPtr<CefFrame> frame,
CefRefPtr<CefV8Context> context) OVERRIDE { CefRefPtr<CefV8Context> context) override {
CEF_REQUIRE_RENDERER_THREAD(); CEF_REQUIRE_RENDERER_THREAD();
// Get the context ID and remove the context from the map. // Get the context ID and remove the context from the map.
@ -801,7 +801,7 @@ class CefMessageRouterRendererSideImpl : public CefMessageRouterRendererSide {
bool OnProcessMessageReceived(CefRefPtr<CefBrowser> browser, bool OnProcessMessageReceived(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame, CefRefPtr<CefFrame> frame,
CefProcessId source_process, CefProcessId source_process,
CefRefPtr<CefProcessMessage> message) OVERRIDE { CefRefPtr<CefProcessMessage> message) override {
CEF_REQUIRE_RENDERER_THREAD(); CEF_REQUIRE_RENDERER_THREAD();
const std::string& message_name = message->GetName(); const std::string& message_name = message->GetName();
@ -870,7 +870,7 @@ class CefMessageRouterRendererSideImpl : public CefMessageRouterRendererSide {
bool OnNextInfo(int browser_id, bool OnNextInfo(int browser_id,
InfoIdType info_id, InfoIdType info_id,
InfoObjectType info, InfoObjectType info,
bool* remove) OVERRIDE { bool* remove) override {
*remove = removed_ = (always_remove_ || !info->persistent); *remove = removed_ = (always_remove_ || !info->persistent);
return true; return true;
} }
@ -955,7 +955,7 @@ class CefMessageRouterRendererSideImpl : public CefMessageRouterRendererSide {
bool OnNextInfo(int browser_id, bool OnNextInfo(int browser_id,
InfoIdType info_id, InfoIdType info_id,
InfoObjectType info, InfoObjectType info,
bool* remove) OVERRIDE { bool* remove) override {
if (info_id.first == context_id_) { if (info_id.first == context_id_) {
*remove = true; *remove = true;
delete info; delete info;

View File

@ -60,7 +60,7 @@ class ContentProvider : public CefResourceManager::Provider {
DCHECK(!content.empty()); DCHECK(!content.empty());
} }
bool OnRequest(scoped_refptr<CefResourceManager::Request> request) OVERRIDE { bool OnRequest(scoped_refptr<CefResourceManager::Request> request) override {
CEF_REQUIRE_IO_THREAD(); CEF_REQUIRE_IO_THREAD();
const std::string& url = request->url(); const std::string& url = request->url();
@ -105,7 +105,7 @@ class DirectoryProvider : public CefResourceManager::Provider {
directory_path_ += PATH_SEP; directory_path_ += PATH_SEP;
} }
bool OnRequest(scoped_refptr<CefResourceManager::Request> request) OVERRIDE { bool OnRequest(scoped_refptr<CefResourceManager::Request> request) override {
CEF_REQUIRE_IO_THREAD(); CEF_REQUIRE_IO_THREAD();
const std::string& url = request->url(); const std::string& url = request->url();
@ -184,7 +184,7 @@ class ArchiveProvider : public CefResourceManager::Provider {
url_path_ += '/'; url_path_ += '/';
} }
bool OnRequest(scoped_refptr<CefResourceManager::Request> request) OVERRIDE { bool OnRequest(scoped_refptr<CefResourceManager::Request> request) override {
CEF_REQUIRE_IO_THREAD(); CEF_REQUIRE_IO_THREAD();
const std::string& url = request->url(); const std::string& url = request->url();

View File

@ -42,11 +42,11 @@ class CefZipFile : public CefZipArchive::File {
} }
} }
virtual const unsigned char* GetData() const OVERRIDE { return data_.get(); } virtual const unsigned char* GetData() const override { return data_.get(); }
virtual size_t GetDataSize() const OVERRIDE { return data_size_; } virtual size_t GetDataSize() const override { return data_size_; }
virtual CefRefPtr<CefStreamReader> GetStreamReader() const OVERRIDE { virtual CefRefPtr<CefStreamReader> GetStreamReader() const override {
CefRefPtr<CefReadHandler> handler(new CefByteReadHandler( CefRefPtr<CefReadHandler> handler(new CefByteReadHandler(
data_.get(), data_size_, const_cast<CefZipFile*>(this))); data_.get(), data_size_, const_cast<CefZipFile*>(this)));
return CefStreamReader::CreateForHandler(handler); return CefStreamReader::CreateForHandler(handler);

View File

@ -28,7 +28,7 @@ class Handler : public CefMessageRouterBrowserSide::Handler {
int64 query_id, int64 query_id,
const CefString& request, const CefString& request,
bool persistent, bool persistent,
CefRefPtr<Callback> callback) OVERRIDE { CefRefPtr<Callback> callback) override {
// Only handle messages from the test URL. // Only handle messages from the test URL.
const std::string& url = frame->GetURL(); const std::string& url = frame->GetURL();
if (!test_runner::IsTestURL(url, kTestUrlPath)) if (!test_runner::IsTestURL(url, kTestUrlPath))

View File

@ -118,18 +118,18 @@ class BrowserWindow : public ClientHandler::Delegate {
explicit BrowserWindow(Delegate* delegate); explicit BrowserWindow(Delegate* delegate);
// ClientHandler::Delegate methods. // ClientHandler::Delegate methods.
void OnBrowserCreated(CefRefPtr<CefBrowser> browser) OVERRIDE; void OnBrowserCreated(CefRefPtr<CefBrowser> browser) override;
void OnBrowserClosing(CefRefPtr<CefBrowser> browser) OVERRIDE; void OnBrowserClosing(CefRefPtr<CefBrowser> browser) override;
void OnBrowserClosed(CefRefPtr<CefBrowser> browser) OVERRIDE; void OnBrowserClosed(CefRefPtr<CefBrowser> browser) override;
void OnSetAddress(const std::string& url) OVERRIDE; void OnSetAddress(const std::string& url) override;
void OnSetTitle(const std::string& title) OVERRIDE; void OnSetTitle(const std::string& title) override;
void OnSetFullscreen(bool fullscreen) OVERRIDE; void OnSetFullscreen(bool fullscreen) override;
void OnAutoResize(const CefSize& new_size) OVERRIDE; void OnAutoResize(const CefSize& new_size) override;
void OnSetLoadingState(bool isLoading, void OnSetLoadingState(bool isLoading,
bool canGoBack, bool canGoBack,
bool canGoForward) OVERRIDE; bool canGoForward) override;
void OnSetDraggableRegions( void OnSetDraggableRegions(
const std::vector<CefDraggableRegion>& regions) OVERRIDE; const std::vector<CefDraggableRegion>& regions) override;
Delegate* delegate_; Delegate* delegate_;
CefRefPtr<CefBrowser> browser_; CefRefPtr<CefBrowser> browser_;

View File

@ -36,61 +36,61 @@ class BrowserWindowOsrGtk : public BrowserWindow,
const CefRect& rect, const CefRect& rect,
const CefBrowserSettings& settings, const CefBrowserSettings& settings,
CefRefPtr<CefDictionaryValue> extra_info, CefRefPtr<CefDictionaryValue> extra_info,
CefRefPtr<CefRequestContext> request_context) OVERRIDE; CefRefPtr<CefRequestContext> request_context) override;
void GetPopupConfig(CefWindowHandle temp_handle, void GetPopupConfig(CefWindowHandle temp_handle,
CefWindowInfo& windowInfo, CefWindowInfo& windowInfo,
CefRefPtr<CefClient>& client, CefRefPtr<CefClient>& client,
CefBrowserSettings& settings) OVERRIDE; CefBrowserSettings& settings) override;
void ShowPopup(ClientWindowHandle parent_handle, void ShowPopup(ClientWindowHandle parent_handle,
int x, int x,
int y, int y,
size_t width, size_t width,
size_t height) OVERRIDE; size_t height) override;
void Show() OVERRIDE; void Show() override;
void Hide() OVERRIDE; void Hide() override;
void SetBounds(int x, int y, size_t width, size_t height) OVERRIDE; void SetBounds(int x, int y, size_t width, size_t height) override;
void SetFocus(bool focus) OVERRIDE; void SetFocus(bool focus) override;
void SetDeviceScaleFactor(float device_scale_factor) OVERRIDE; void SetDeviceScaleFactor(float device_scale_factor) override;
float GetDeviceScaleFactor() const OVERRIDE; float GetDeviceScaleFactor() const override;
ClientWindowHandle GetWindowHandle() const OVERRIDE; ClientWindowHandle GetWindowHandle() const override;
// ClientHandlerOsr::OsrDelegate methods. // ClientHandlerOsr::OsrDelegate methods.
void OnAfterCreated(CefRefPtr<CefBrowser> browser) OVERRIDE; void OnAfterCreated(CefRefPtr<CefBrowser> browser) override;
void OnBeforeClose(CefRefPtr<CefBrowser> browser) OVERRIDE; void OnBeforeClose(CefRefPtr<CefBrowser> browser) override;
bool GetRootScreenRect(CefRefPtr<CefBrowser> browser, CefRect& rect) OVERRIDE; bool GetRootScreenRect(CefRefPtr<CefBrowser> browser, CefRect& rect) override;
void GetViewRect(CefRefPtr<CefBrowser> browser, CefRect& rect) OVERRIDE; void GetViewRect(CefRefPtr<CefBrowser> browser, CefRect& rect) override;
bool GetScreenPoint(CefRefPtr<CefBrowser> browser, bool GetScreenPoint(CefRefPtr<CefBrowser> browser,
int viewX, int viewX,
int viewY, int viewY,
int& screenX, int& screenX,
int& screenY) OVERRIDE; int& screenY) override;
bool GetScreenInfo(CefRefPtr<CefBrowser> browser, bool GetScreenInfo(CefRefPtr<CefBrowser> browser,
CefScreenInfo& screen_info) OVERRIDE; CefScreenInfo& screen_info) override;
void OnPopupShow(CefRefPtr<CefBrowser> browser, bool show) OVERRIDE; void OnPopupShow(CefRefPtr<CefBrowser> browser, bool show) override;
void OnPopupSize(CefRefPtr<CefBrowser> browser, const CefRect& rect) OVERRIDE; void OnPopupSize(CefRefPtr<CefBrowser> browser, const CefRect& rect) override;
void OnPaint(CefRefPtr<CefBrowser> browser, void OnPaint(CefRefPtr<CefBrowser> browser,
CefRenderHandler::PaintElementType type, CefRenderHandler::PaintElementType type,
const CefRenderHandler::RectList& dirtyRects, const CefRenderHandler::RectList& dirtyRects,
const void* buffer, const void* buffer,
int width, int width,
int height) OVERRIDE; int height) override;
void OnCursorChange(CefRefPtr<CefBrowser> browser, void OnCursorChange(CefRefPtr<CefBrowser> browser,
CefCursorHandle cursor, CefCursorHandle cursor,
cef_cursor_type_t type, cef_cursor_type_t type,
const CefCursorInfo& custom_cursor_info) OVERRIDE; const CefCursorInfo& custom_cursor_info) override;
bool StartDragging(CefRefPtr<CefBrowser> browser, bool StartDragging(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefDragData> drag_data, CefRefPtr<CefDragData> drag_data,
CefRenderHandler::DragOperationsMask allowed_ops, CefRenderHandler::DragOperationsMask allowed_ops,
int x, int x,
int y) OVERRIDE; int y) override;
void UpdateDragCursor(CefRefPtr<CefBrowser> browser, void UpdateDragCursor(CefRefPtr<CefBrowser> browser,
CefRenderHandler::DragOperation operation) OVERRIDE; CefRenderHandler::DragOperation operation) override;
void OnImeCompositionRangeChanged( void OnImeCompositionRangeChanged(
CefRefPtr<CefBrowser> browser, CefRefPtr<CefBrowser> browser,
const CefRange& selection_range, const CefRange& selection_range,
const CefRenderHandler::RectList& character_bounds) OVERRIDE; const CefRenderHandler::RectList& character_bounds) override;
void UpdateAccessibilityTree(CefRefPtr<CefValue> value) OVERRIDE; void UpdateAccessibilityTree(CefRefPtr<CefValue> value) override;
void UpdateAccessibilityLocation(CefRefPtr<CefValue> value) OVERRIDE; void UpdateAccessibilityLocation(CefRefPtr<CefValue> value) override;
private: private:
~BrowserWindowOsrGtk(); ~BrowserWindowOsrGtk();

View File

@ -33,62 +33,62 @@ class BrowserWindowOsrMac : public BrowserWindow,
const CefRect& rect, const CefRect& rect,
const CefBrowserSettings& settings, const CefBrowserSettings& settings,
CefRefPtr<CefDictionaryValue> extra_info, CefRefPtr<CefDictionaryValue> extra_info,
CefRefPtr<CefRequestContext> request_context) OVERRIDE; CefRefPtr<CefRequestContext> request_context) override;
void GetPopupConfig(CefWindowHandle temp_handle, void GetPopupConfig(CefWindowHandle temp_handle,
CefWindowInfo& windowInfo, CefWindowInfo& windowInfo,
CefRefPtr<CefClient>& client, CefRefPtr<CefClient>& client,
CefBrowserSettings& settings) OVERRIDE; CefBrowserSettings& settings) override;
void ShowPopup(ClientWindowHandle parent_handle, void ShowPopup(ClientWindowHandle parent_handle,
int x, int x,
int y, int y,
size_t width, size_t width,
size_t height) OVERRIDE; size_t height) override;
void Show() OVERRIDE; void Show() override;
void Hide() OVERRIDE; void Hide() override;
void SetBounds(int x, int y, size_t width, size_t height) OVERRIDE; void SetBounds(int x, int y, size_t width, size_t height) override;
void SetFocus(bool focus) OVERRIDE; void SetFocus(bool focus) override;
void SetDeviceScaleFactor(float device_scale_factor) OVERRIDE; void SetDeviceScaleFactor(float device_scale_factor) override;
float GetDeviceScaleFactor() const OVERRIDE; float GetDeviceScaleFactor() const override;
ClientWindowHandle GetWindowHandle() const OVERRIDE; ClientWindowHandle GetWindowHandle() const override;
// ClientHandlerOsr::OsrDelegate methods. // ClientHandlerOsr::OsrDelegate methods.
void OnAfterCreated(CefRefPtr<CefBrowser> browser) OVERRIDE; void OnAfterCreated(CefRefPtr<CefBrowser> browser) override;
void OnBeforeClose(CefRefPtr<CefBrowser> browser) OVERRIDE; void OnBeforeClose(CefRefPtr<CefBrowser> browser) override;
bool GetRootScreenRect(CefRefPtr<CefBrowser> browser, CefRect& rect) OVERRIDE; bool GetRootScreenRect(CefRefPtr<CefBrowser> browser, CefRect& rect) override;
void GetViewRect(CefRefPtr<CefBrowser> browser, CefRect& rect) OVERRIDE; void GetViewRect(CefRefPtr<CefBrowser> browser, CefRect& rect) override;
bool GetScreenPoint(CefRefPtr<CefBrowser> browser, bool GetScreenPoint(CefRefPtr<CefBrowser> browser,
int viewX, int viewX,
int viewY, int viewY,
int& screenX, int& screenX,
int& screenY) OVERRIDE; int& screenY) override;
bool GetScreenInfo(CefRefPtr<CefBrowser> browser, bool GetScreenInfo(CefRefPtr<CefBrowser> browser,
CefScreenInfo& screen_info) OVERRIDE; CefScreenInfo& screen_info) override;
void OnPopupShow(CefRefPtr<CefBrowser> browser, bool show) OVERRIDE; void OnPopupShow(CefRefPtr<CefBrowser> browser, bool show) override;
void OnPopupSize(CefRefPtr<CefBrowser> browser, const CefRect& rect) OVERRIDE; void OnPopupSize(CefRefPtr<CefBrowser> browser, const CefRect& rect) override;
void OnPaint(CefRefPtr<CefBrowser> browser, void OnPaint(CefRefPtr<CefBrowser> browser,
CefRenderHandler::PaintElementType type, CefRenderHandler::PaintElementType type,
const CefRenderHandler::RectList& dirtyRects, const CefRenderHandler::RectList& dirtyRects,
const void* buffer, const void* buffer,
int width, int width,
int height) OVERRIDE; int height) override;
void OnCursorChange(CefRefPtr<CefBrowser> browser, void OnCursorChange(CefRefPtr<CefBrowser> browser,
CefCursorHandle cursor, CefCursorHandle cursor,
cef_cursor_type_t type, cef_cursor_type_t type,
const CefCursorInfo& custom_cursor_info) OVERRIDE; const CefCursorInfo& custom_cursor_info) override;
bool StartDragging(CefRefPtr<CefBrowser> browser, bool StartDragging(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefDragData> drag_data, CefRefPtr<CefDragData> drag_data,
CefRenderHandler::DragOperationsMask allowed_ops, CefRenderHandler::DragOperationsMask allowed_ops,
int x, int x,
int y) OVERRIDE; int y) override;
void UpdateDragCursor(CefRefPtr<CefBrowser> browser, void UpdateDragCursor(CefRefPtr<CefBrowser> browser,
CefRenderHandler::DragOperation operation) OVERRIDE; CefRenderHandler::DragOperation operation) override;
void OnImeCompositionRangeChanged( void OnImeCompositionRangeChanged(
CefRefPtr<CefBrowser> browser, CefRefPtr<CefBrowser> browser,
const CefRange& selection_range, const CefRange& selection_range,
const CefRenderHandler::RectList& character_bounds) OVERRIDE; const CefRenderHandler::RectList& character_bounds) override;
void UpdateAccessibilityTree(CefRefPtr<CefValue> value) OVERRIDE; void UpdateAccessibilityTree(CefRefPtr<CefValue> value) override;
void UpdateAccessibilityLocation(CefRefPtr<CefValue> value) OVERRIDE; void UpdateAccessibilityLocation(CefRefPtr<CefValue> value) override;
private: private:
scoped_ptr<BrowserWindowOsrMacImpl> impl_; scoped_ptr<BrowserWindowOsrMacImpl> impl_;

View File

@ -28,30 +28,30 @@ class BrowserWindowOsrWin : public BrowserWindow,
const CefRect& rect, const CefRect& rect,
const CefBrowserSettings& settings, const CefBrowserSettings& settings,
CefRefPtr<CefDictionaryValue> extra_info, CefRefPtr<CefDictionaryValue> extra_info,
CefRefPtr<CefRequestContext> request_context) OVERRIDE; CefRefPtr<CefRequestContext> request_context) override;
void GetPopupConfig(CefWindowHandle temp_handle, void GetPopupConfig(CefWindowHandle temp_handle,
CefWindowInfo& windowInfo, CefWindowInfo& windowInfo,
CefRefPtr<CefClient>& client, CefRefPtr<CefClient>& client,
CefBrowserSettings& settings) OVERRIDE; CefBrowserSettings& settings) override;
void ShowPopup(ClientWindowHandle parent_handle, void ShowPopup(ClientWindowHandle parent_handle,
int x, int x,
int y, int y,
size_t width, size_t width,
size_t height) OVERRIDE; size_t height) override;
void Show() OVERRIDE; void Show() override;
void Hide() OVERRIDE; void Hide() override;
void SetBounds(int x, int y, size_t width, size_t height) OVERRIDE; void SetBounds(int x, int y, size_t width, size_t height) override;
void SetFocus(bool focus) OVERRIDE; void SetFocus(bool focus) override;
void SetDeviceScaleFactor(float device_scale_factor) OVERRIDE; void SetDeviceScaleFactor(float device_scale_factor) override;
float GetDeviceScaleFactor() const OVERRIDE; float GetDeviceScaleFactor() const override;
ClientWindowHandle GetWindowHandle() const OVERRIDE; ClientWindowHandle GetWindowHandle() const override;
private: private:
// ClienHandler::Delegate methods. // ClienHandler::Delegate methods.
void OnBrowserClosed(CefRefPtr<CefBrowser> browser) OVERRIDE; void OnBrowserClosed(CefRefPtr<CefBrowser> browser) override;
// OsrWindowWin::Delegate methods. // OsrWindowWin::Delegate methods.
void OnOsrNativeWindowCreated(HWND hwnd) OVERRIDE; void OnOsrNativeWindowCreated(HWND hwnd) override;
// The below members are only accessed on the main thread. // The below members are only accessed on the main thread.
scoped_refptr<OsrWindowWin> osr_window_; scoped_refptr<OsrWindowWin> osr_window_;

View File

@ -27,21 +27,21 @@ class BrowserWindowStdGtk : public BrowserWindow {
const CefRect& rect, const CefRect& rect,
const CefBrowserSettings& settings, const CefBrowserSettings& settings,
CefRefPtr<CefDictionaryValue> extra_info, CefRefPtr<CefDictionaryValue> extra_info,
CefRefPtr<CefRequestContext> request_context) OVERRIDE; CefRefPtr<CefRequestContext> request_context) override;
void GetPopupConfig(CefWindowHandle temp_handle, void GetPopupConfig(CefWindowHandle temp_handle,
CefWindowInfo& windowInfo, CefWindowInfo& windowInfo,
CefRefPtr<CefClient>& client, CefRefPtr<CefClient>& client,
CefBrowserSettings& settings) OVERRIDE; CefBrowserSettings& settings) override;
void ShowPopup(ClientWindowHandle parent_handle, void ShowPopup(ClientWindowHandle parent_handle,
int x, int x,
int y, int y,
size_t width, size_t width,
size_t height) OVERRIDE; size_t height) override;
void Show() OVERRIDE; void Show() override;
void Hide() OVERRIDE; void Hide() override;
void SetBounds(int x, int y, size_t width, size_t height) OVERRIDE; void SetBounds(int x, int y, size_t width, size_t height) override;
void SetFocus(bool focus) OVERRIDE; void SetFocus(bool focus) override;
ClientWindowHandle GetWindowHandle() const OVERRIDE; ClientWindowHandle GetWindowHandle() const override;
private: private:
XDisplay* xdisplay_; XDisplay* xdisplay_;

View File

@ -24,21 +24,21 @@ class BrowserWindowStdMac : public BrowserWindow {
const CefRect& rect, const CefRect& rect,
const CefBrowserSettings& settings, const CefBrowserSettings& settings,
CefRefPtr<CefDictionaryValue> extra_info, CefRefPtr<CefDictionaryValue> extra_info,
CefRefPtr<CefRequestContext> request_context) OVERRIDE; CefRefPtr<CefRequestContext> request_context) override;
void GetPopupConfig(CefWindowHandle temp_handle, void GetPopupConfig(CefWindowHandle temp_handle,
CefWindowInfo& windowInfo, CefWindowInfo& windowInfo,
CefRefPtr<CefClient>& client, CefRefPtr<CefClient>& client,
CefBrowserSettings& settings) OVERRIDE; CefBrowserSettings& settings) override;
void ShowPopup(ClientWindowHandle parent_handle, void ShowPopup(ClientWindowHandle parent_handle,
int x, int x,
int y, int y,
size_t width, size_t width,
size_t height) OVERRIDE; size_t height) override;
void Show() OVERRIDE; void Show() override;
void Hide() OVERRIDE; void Hide() override;
void SetBounds(int x, int y, size_t width, size_t height) OVERRIDE; void SetBounds(int x, int y, size_t width, size_t height) override;
void SetFocus(bool focus) OVERRIDE; void SetFocus(bool focus) override;
ClientWindowHandle GetWindowHandle() const OVERRIDE; ClientWindowHandle GetWindowHandle() const override;
private: private:
DISALLOW_COPY_AND_ASSIGN(BrowserWindowStdMac); DISALLOW_COPY_AND_ASSIGN(BrowserWindowStdMac);

View File

@ -24,21 +24,21 @@ class BrowserWindowStdWin : public BrowserWindow {
const CefRect& rect, const CefRect& rect,
const CefBrowserSettings& settings, const CefBrowserSettings& settings,
CefRefPtr<CefDictionaryValue> extra_info, CefRefPtr<CefDictionaryValue> extra_info,
CefRefPtr<CefRequestContext> request_context) OVERRIDE; CefRefPtr<CefRequestContext> request_context) override;
void GetPopupConfig(CefWindowHandle temp_handle, void GetPopupConfig(CefWindowHandle temp_handle,
CefWindowInfo& windowInfo, CefWindowInfo& windowInfo,
CefRefPtr<CefClient>& client, CefRefPtr<CefClient>& client,
CefBrowserSettings& settings) OVERRIDE; CefBrowserSettings& settings) override;
void ShowPopup(ClientWindowHandle parent_handle, void ShowPopup(ClientWindowHandle parent_handle,
int x, int x,
int y, int y,
size_t width, size_t width,
size_t height) OVERRIDE; size_t height) override;
void Show() OVERRIDE; void Show() override;
void Hide() OVERRIDE; void Hide() override;
void SetBounds(int x, int y, size_t width, size_t height) OVERRIDE; void SetBounds(int x, int y, size_t width, size_t height) override;
void SetFocus(bool focus) OVERRIDE; void SetFocus(bool focus) override;
ClientWindowHandle GetWindowHandle() const OVERRIDE; ClientWindowHandle GetWindowHandle() const override;
private: private:
DISALLOW_COPY_AND_ASSIGN(BrowserWindowStdWin); DISALLOW_COPY_AND_ASSIGN(BrowserWindowStdWin);

View File

@ -16,11 +16,11 @@ class BytesWriteHandler : public CefWriteHandler {
explicit BytesWriteHandler(size_t grow); explicit BytesWriteHandler(size_t grow);
~BytesWriteHandler(); ~BytesWriteHandler();
size_t Write(const void* ptr, size_t size, size_t n) OVERRIDE; size_t Write(const void* ptr, size_t size, size_t n) override;
int Seek(int64 offset, int whence) OVERRIDE; int Seek(int64 offset, int whence) override;
int64 Tell() OVERRIDE; int64 Tell() override;
int Flush() OVERRIDE; int Flush() override;
bool MayBlock() OVERRIDE { return false; } bool MayBlock() override { return false; }
void* GetData() { return data_; } void* GetData() { return data_; }
int64 GetDataSize() { return offset_; } int64 GetDataSize() { return offset_; }

View File

@ -19,7 +19,7 @@ class ClientBrowserDelegate : public ClientAppBrowser::Delegate {
public: public:
ClientBrowserDelegate() {} ClientBrowserDelegate() {}
void OnContextInitialized(CefRefPtr<ClientAppBrowser> app) OVERRIDE { void OnContextInitialized(CefRefPtr<ClientAppBrowser> app) override {
if (CefCrashReportingEnabled()) { if (CefCrashReportingEnabled()) {
// Set some crash keys for testing purposes. Keys must be defined in the // Set some crash keys for testing purposes. Keys must be defined in the
// "crash_reporter.cfg" file. See cef_crash_util.h for details. // "crash_reporter.cfg" file. See cef_crash_util.h for details.
@ -42,7 +42,7 @@ class ClientBrowserDelegate : public ClientAppBrowser::Delegate {
void OnBeforeCommandLineProcessing( void OnBeforeCommandLineProcessing(
CefRefPtr<ClientAppBrowser> app, CefRefPtr<ClientAppBrowser> app,
CefRefPtr<CefCommandLine> command_line) OVERRIDE { CefRefPtr<CefCommandLine> command_line) override {
// Append Chromium command line parameters if touch events are enabled // Append Chromium command line parameters if touch events are enabled
if (client::MainContext::Get()->TouchEventsEnabled()) if (client::MainContext::Get()->TouchEventsEnabled())
command_line->AppendSwitchWithValue("touch-events", "enabled"); command_line->AppendSwitchWithValue("touch-events", "enabled");

View File

@ -230,7 +230,7 @@ class ClientDownloadImageCallback : public CefDownloadImageCallback {
void OnDownloadImageFinished(const CefString& image_url, void OnDownloadImageFinished(const CefString& image_url,
int http_status_code, int http_status_code,
CefRefPtr<CefImage> image) OVERRIDE { CefRefPtr<CefImage> image) override {
if (image) if (image)
client_handler_->NotifyFavicon(image); client_handler_->NotifyFavicon(image);
} }

Some files were not shown because too many files have changed in this diff Show More