106 lines
2.8 KiB
C++
106 lines
2.8 KiB
C++
// Copyright (c) 2017 The Chromium Embedded Framework Authors. All rights
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
// can be found in the LICENSE file.
|
|
//
|
|
// ---------------------------------------------------------------------------
|
|
//
|
|
// This file was generated by the CEF translator tool. If making changes by
|
|
// hand only do so within the body of existing method and function
|
|
// implementations. See the translator.README.txt file in the tools directory
|
|
// for more information.
|
|
//
|
|
|
|
#include "include/views/cef_browser_view.h"
|
|
#include "include/views/cef_display.h"
|
|
#include "include/views/cef_label_button.h"
|
|
#include "include/views/cef_menu_button.h"
|
|
#include "include/views/cef_panel.h"
|
|
#include "include/views/cef_scroll_view.h"
|
|
#include "include/views/cef_textfield.h"
|
|
#include "include/views/cef_window.h"
|
|
|
|
#include "base/logging.h"
|
|
|
|
|
|
// STATIC STUB METHODS - Do not edit by hand.
|
|
|
|
CefRefPtr<CefBrowserView> CefBrowserView::CreateBrowserView(
|
|
CefRefPtr<CefClient> client, const CefString& url,
|
|
const CefBrowserSettings& settings,
|
|
CefRefPtr<CefRequestContext> request_context,
|
|
CefRefPtr<CefBrowserViewDelegate> delegate) {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|
|
CefRefPtr<CefBrowserView> CefBrowserView::GetForBrowser(
|
|
CefRefPtr<CefBrowser> browser) {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|
|
CefRefPtr<CefDisplay> CefDisplay::GetPrimaryDisplay() {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|
|
CefRefPtr<CefDisplay> CefDisplay::GetDisplayNearestPoint(const CefPoint& point,
|
|
bool input_pixel_coords) {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|
|
CefRefPtr<CefDisplay> CefDisplay::GetDisplayMatchingBounds(
|
|
const CefRect& bounds, bool input_pixel_coords) {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|
|
size_t CefDisplay::GetDisplayCount() {
|
|
NOTIMPLEMENTED();
|
|
return 0;
|
|
}
|
|
|
|
void CefDisplay::GetAllDisplays(std::vector<CefRefPtr<CefDisplay>>& displays) {
|
|
NOTIMPLEMENTED();
|
|
}
|
|
|
|
CefRefPtr<CefLabelButton> CefLabelButton::CreateLabelButton(
|
|
CefRefPtr<CefButtonDelegate> delegate, const CefString& text,
|
|
bool with_frame) {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|
|
CefRefPtr<CefMenuButton> CefMenuButton::CreateMenuButton(
|
|
CefRefPtr<CefMenuButtonDelegate> delegate, const CefString& text,
|
|
bool with_frame, bool with_menu_marker) {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|
|
CefRefPtr<CefPanel> CefPanel::CreatePanel(
|
|
CefRefPtr<CefPanelDelegate> delegate) {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|
|
CefRefPtr<CefScrollView> CefScrollView::CreateScrollView(
|
|
CefRefPtr<CefViewDelegate> delegate) {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|
|
CefRefPtr<CefTextfield> CefTextfield::CreateTextfield(
|
|
CefRefPtr<CefTextfieldDelegate> delegate) {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|
|
CefRefPtr<CefWindow> CefWindow::CreateTopLevelWindow(
|
|
CefRefPtr<CefWindowDelegate> delegate) {
|
|
NOTIMPLEMENTED();
|
|
return NULL;
|
|
}
|
|
|