cef/libcef_dll/ctocpp/post_data_ctocpp.cc
Marshall Greenblatt 9df142f832 - Add CefURLRequest support (issue #517).
- Add CefBrowserProcessHandler interface (issue #650).
- Internally re-register supported schemes with CefCookieManager after changing the storage path (issue #651).
- Add CefResourceHandler callbacks for blocking cookie loading and saving (issue #652).
- Allow custom scheme handlers for requests that do not originate from browser content (issue #653).
- Use 'int' instead of 'RequestFlags' for CefRequest::GetFlags and SetFlags (issue #654).
- Rename cef_request.h CreateObject methods to Create (issue #655).
- Add #ifdef guards to cef_tuple.h to allow the use of both cef_runnable.h and base/bind.h in the same unit test source file.
- Retrieve cookieable schemes as part of ClientApp::RegisterCustomSchemes and register with the global cookie manager.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@697 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
2012-06-19 16:29:49 +00:00

150 lines
4.0 KiB
C++

// Copyright (c) 2012 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 "libcef_dll/ctocpp/post_data_ctocpp.h"
#include "libcef_dll/ctocpp/post_data_element_ctocpp.h"
// STATIC METHODS - Body may be edited by hand.
CefRefPtr<CefPostData> CefPostData::Create() {
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_post_data_t* _retval = cef_post_data_create();
// Return type: refptr_same
return CefPostDataCToCpp::Wrap(_retval);
}
// VIRTUAL METHODS - Body may be edited by hand.
bool CefPostDataCToCpp::IsReadOnly() {
if (CEF_MEMBER_MISSING(struct_, is_read_only))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = struct_->is_read_only(struct_);
// Return type: bool
return _retval?true:false;
}
size_t CefPostDataCToCpp::GetElementCount() {
if (CEF_MEMBER_MISSING(struct_, get_element_count))
return 0;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
size_t _retval = struct_->get_element_count(struct_);
// Return type: simple
return _retval;
}
void CefPostDataCToCpp::GetElements(ElementVector& elements) {
if (CEF_MEMBER_MISSING(struct_, get_elements))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Translate param: elements; type: refptr_vec_same_byref
size_t elementsSize = elements.size();
size_t elementsCount = std::max(GetElementCount(), elementsSize);
cef_post_data_element_t** elementsList = NULL;
if (elementsCount > 0) {
elementsList = new cef_post_data_element_t*[elementsCount];
DCHECK(elementsList);
if (elementsList) {
memset(elementsList, 0, sizeof(cef_post_data_element_t*)*elementsCount);
}
if (elementsList && elementsSize > 0) {
for (size_t i = 0; i < elementsSize; ++i) {
elementsList[i] = CefPostDataElementCToCpp::Unwrap(elements[i]);
}
}
}
// Execute
struct_->get_elements(struct_,
&elementsCount,
elementsList);
// Restore param:elements; type: refptr_vec_same_byref
elements.clear();
if (elementsCount > 0 && elementsList) {
for (size_t i = 0; i < elementsCount; ++i) {
elements.push_back(CefPostDataElementCToCpp::Wrap(elementsList[i]));
}
delete [] elementsList;
}
}
bool CefPostDataCToCpp::RemoveElement(CefRefPtr<CefPostDataElement> element) {
if (CEF_MEMBER_MISSING(struct_, remove_element))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: element; type: refptr_same
DCHECK(element.get());
if (!element.get())
return false;
// Execute
int _retval = struct_->remove_element(struct_,
CefPostDataElementCToCpp::Unwrap(element));
// Return type: bool
return _retval?true:false;
}
bool CefPostDataCToCpp::AddElement(CefRefPtr<CefPostDataElement> element) {
if (CEF_MEMBER_MISSING(struct_, add_element))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: element; type: refptr_same
DCHECK(element.get());
if (!element.get())
return false;
// Execute
int _retval = struct_->add_element(struct_,
CefPostDataElementCToCpp::Unwrap(element));
// Return type: bool
return _retval?true:false;
}
void CefPostDataCToCpp::RemoveElements() {
if (CEF_MEMBER_MISSING(struct_, remove_elements))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
struct_->remove_elements(struct_);
}
#ifndef NDEBUG
template<> long CefCToCpp<CefPostDataCToCpp, CefPostData,
cef_post_data_t>::DebugObjCt = 0;
#endif