当前位置: 首页>>代码示例>>Java>>正文


Java CefURLRequestClient类代码示例

本文整理汇总了Java中org.cef.callback.CefURLRequestClient的典型用法代码示例。如果您正苦于以下问题:Java CefURLRequestClient类的具体用法?Java CefURLRequestClient怎么用?Java CefURLRequestClient使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


CefURLRequestClient类属于org.cef.callback包,在下文中一共展示了CefURLRequestClient类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createNative

import org.cef.callback.CefURLRequestClient; //导入依赖的package包/类
public static final CefURLRequest createNative(CefRequest request, CefURLRequestClient client) {
    // keep a reference to the request and client objects.
    CefURLRequest_N result = new CefURLRequest_N(request, client);
    try {
        result.N_CefURLRequest_CTOR(request, client);
    } catch (UnsatisfiedLinkError ule) {
        ule.printStackTrace();
    }
    if (result.N_CefHandle == 0) {
        return null;
    }
    return result;
}
 
开发者ID:Panda-Programming-Language,项目名称:Pandomium,代码行数:14,代码来源:CefURLRequest_N.java

示例2: createNative

import org.cef.callback.CefURLRequestClient; //导入依赖的package包/类
public static final CefURLRequest createNative(CefRequest request,
                                               CefURLRequestClient client) {
  // keep a reference to the request and client objects.
  CefURLRequest_N result = new CefURLRequest_N(request, client);
  try {
    result.N_CefURLRequest_CTOR(request, client);
  } catch (UnsatisfiedLinkError ule) {
    ule.printStackTrace();
  }
  if (result.N_CefHandle == 0)
    return null;
  return result;
}
 
开发者ID:viglucci,项目名称:app-jcef-example,代码行数:14,代码来源:CefURLRequest_N.java

示例3: CefURLRequest_N

import org.cef.callback.CefURLRequestClient; //导入依赖的package包/类
CefURLRequest_N(CefRequest request, CefURLRequestClient client) {
    super();
    request_ = request;
    client_ = client;
}
 
开发者ID:Panda-Programming-Language,项目名称:Pandomium,代码行数:6,代码来源:CefURLRequest_N.java

示例4: getClient

import org.cef.callback.CefURLRequestClient; //导入依赖的package包/类
@Override
public CefURLRequestClient getClient() {
    return client_;
}
 
开发者ID:Panda-Programming-Language,项目名称:Pandomium,代码行数:5,代码来源:CefURLRequest_N.java

示例5: CefURLRequest_N

import org.cef.callback.CefURLRequestClient; //导入依赖的package包/类
CefURLRequest_N(CefRequest request,
                CefURLRequestClient client) {
  super();
  request_ = request;
  client_ = client;
}
 
开发者ID:viglucci,项目名称:app-jcef-example,代码行数:7,代码来源:CefURLRequest_N.java

示例6: getClient

import org.cef.callback.CefURLRequestClient; //导入依赖的package包/类
@Override
public CefURLRequestClient getClient() {
  return client_;
}
 
开发者ID:viglucci,项目名称:app-jcef-example,代码行数:5,代码来源:CefURLRequest_N.java

示例7: create

import org.cef.callback.CefURLRequestClient; //导入依赖的package包/类
/**
 * Create a new URL request. Only GET, POST, HEAD, DELETE and PUT request
 * methods are supported. Multiple post data elements are not supported and
 * elements of type PDE_TYPE_FILE are only supported for requests originating
 * from the browser process. Requests originating from the render process will
 * receive the same handling as requests originating from Web content -- if
 * the response contains Content-Disposition or Mime-Type header values that
 * would not normally be rendered then the response may receive special
 * handling inside the browser (for example, via the file download code path
 * instead of the URL request code path). The |request| object will be marked
 * as read-only after calling this method.
 */
public static final CefURLRequest create(CefRequest request, CefURLRequestClient client) {
    return CefURLRequest_N.createNative(request, client);
}
 
开发者ID:Panda-Programming-Language,项目名称:Pandomium,代码行数:16,代码来源:CefURLRequest.java

示例8: getClient

import org.cef.callback.CefURLRequestClient; //导入依赖的package包/类
/**
 * Returns the client.
 */
public abstract CefURLRequestClient getClient();
 
开发者ID:Panda-Programming-Language,项目名称:Pandomium,代码行数:5,代码来源:CefURLRequest.java

示例9: create

import org.cef.callback.CefURLRequestClient; //导入依赖的package包/类
/**
 * Create a new URL request. Only GET, POST, HEAD, DELETE and PUT request
 * methods are supported. Multiple post data elements are not supported and
 * elements of type PDE_TYPE_FILE are only supported for requests originating
 * from the browser process. Requests originating from the render process will
 * receive the same handling as requests originating from Web content -- if
 * the response contains Content-Disposition or Mime-Type header values that
 * would not normally be rendered then the response may receive special
 * handling inside the browser (for example, via the file download code path
 * instead of the URL request code path). The |request| object will be marked
 * as read-only after calling this method.
 */
public static final CefURLRequest create(CefRequest request,
                                         CefURLRequestClient client) {
  return CefURLRequest_N.createNative(request, client);
}
 
开发者ID:viglucci,项目名称:app-jcef-example,代码行数:17,代码来源:CefURLRequest.java

示例10: N_CefURLRequest_CTOR

import org.cef.callback.CefURLRequestClient; //导入依赖的package包/类
private final native void N_CefURLRequest_CTOR(CefRequest request, CefURLRequestClient client); 
开发者ID:Panda-Programming-Language,项目名称:Pandomium,代码行数:2,代码来源:CefURLRequest_N.java


注:本文中的org.cef.callback.CefURLRequestClient类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。