OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InterceptNavigationDelegate
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/components/navigation_interception/android/java/src/org/chromium/components/navigation_interception/
InterceptNavigationDelegate.java
9
public interface
InterceptNavigationDelegate
{
/external/chromium_org/components/navigation_interception/
intercept_navigation_delegate.h
27
// Native side of the
InterceptNavigationDelegate
Java interface.
38
class
InterceptNavigationDelegate
: public base::SupportsUserData::Data {
40
InterceptNavigationDelegate
(JNIEnv* env, jobject jdelegate);
41
virtual ~
InterceptNavigationDelegate
();
43
// Associates the
InterceptNavigationDelegate
with a WebContents using the
48
scoped_ptr<
InterceptNavigationDelegate
> delegate);
49
// Gets the
InterceptNavigationDelegate
associated with the WebContents,
51
static
InterceptNavigationDelegate
* Get(content::WebContents* web_contents);
54
// callbacks to the
InterceptNavigationDelegate
.
intercept_navigation_delegate.cc
38
InterceptNavigationDelegate
* intercept_navigation_delegate =
39
InterceptNavigationDelegate
::Get(source);
49
void
InterceptNavigationDelegate
::Associate(
51
scoped_ptr<
InterceptNavigationDelegate
> delegate) {
57
InterceptNavigationDelegate
*
InterceptNavigationDelegate
::Get(
59
return reinterpret_cast<
InterceptNavigationDelegate
*>(
64
content::ResourceThrottle*
InterceptNavigationDelegate
::CreateThrottleFor(
70
InterceptNavigationDelegate
::
InterceptNavigationDelegate
(
[
all
...]
Completed in 51 milliseconds