OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ContentView
(Results
26 - 36
of
36
) sorted by null
1
2
/external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/
ChromiumTestShellActivity.java
31
import org.chromium.content.browser.
ContentView
;
158
ContentView
view = getActiveContentView();
166
ContentView
view = getActiveContentView();
194
* @return The
ContentView
of the active tab.
196
public
ContentView
getActiveContentView() {
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
TabBase.java
26
import org.chromium.content.browser.
ContentView
;
39
* The basic Java representation of a tab. Contains and manages a {@link
ContentView
}.
78
/** The {@link
ContentView
} showing the current page or {@code null} if the tab is frozen. */
79
private
ContentView
mContentView;
89
* equals {@link
ContentView
#getContentViewCore()}, or {@code null} if mContentView is
231
// We need a valid Activity Context to build the
ContentView
with.
332
* {@link
ContentView
} but could potentially be any instance of {@link View}. This can
387
* Reloads the current page content if it is a {@link
ContentView
}.
390
// TODO(dtrainor): Should we try to rebuild the
ContentView
if it's frozen?
395
* Reloads the current page content if it is a {@link
ContentView
}
[
all
...]
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
AutofillDialogControllerTest.java
15
import org.chromium.content.browser.
ContentView
;
468
final
ContentView
view = getActivity().getActiveContentView();
482
final
ContentView
view = getActivity().getActiveContentView();
579
final
ContentView
view = getActivity().getActiveContentView();
608
private void waitForInputFieldFill(final
ContentView
view,
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
HistoryUtils.java
12
import org.chromium.content.browser.
ContentView
;
27
* Calls {@link
ContentView
#canGoBack()} on UI thread.
31
* @return result of {@link
ContentView
#canGoBack()}
46
* Calls {@link
ContentView
#canGoToOffset(int)} on UI thread.
52
* @return result of {@link
ContentView
#canGoToOffset(int)}
67
* Calls {@link
ContentView
#canGoForward()} on UI thread.
71
* @return result of {@link
ContentView
#canGoForward()}
86
* Calls {@link
ContentView
#clearHistory()} on UI thread.
103
* Calls {@link
ContentView
#getUrl()} on UI Thread to get the current URL.
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/sync/
SyncTest.java
20
import org.chromium.content.browser.
ContentView
;
185
ContentView
contentView
= activity.getActiveContentView();
186
if (
contentView
== null) return null;
187
return
contentView
.getContentViewCore();
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentViewRenderView.java
24
* This view is used by a
ContentView
to render its content.
25
* Call {@link #setCurrentContentView(
ContentView
)} with the
contentView
that should be displayed.
26
* Note that only one
ContentView
can be shown at a time.
43
private
ContentView
mCurrentContentView;
185
* Makes the passed
ContentView
the one displayed by this ContentViewRenderView.
187
public void setCurrentContentView(
ContentView
contentView
) {
189
mCurrentContentView =
contentView
;
192
contentView
!= null ? contentView.getContentViewCore() : null
[
all
...]
/external/chromium/chrome/browser/chromeos/login/
wizard_controller.cc
74
class
ContentView
: public views::View {
76
ContentView
()
114
~
ContentView
() {
177
DISALLOW_COPY_AND_ASSIGN(
ContentView
);
269
contents_ = new
ContentView
();
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
SelectionHandleTest.java
19
import org.chromium.content.browser.
ContentView
;
328
ContentView
view = getContentView();
340
ContentView
view = getContentView();
ImeTest.java
21
import org.chromium.content.browser.
ContentView
;
48
private
ContentView
mContentView;
InsertionHandleTest.java
19
import org.chromium.content.browser.
ContentView
;
295
ContentView
view = getContentView();
/frameworks/webview/chromium/java/com/android/webview/chromium/
WebViewContentsClientAdapter.java
58
import org.chromium.content.browser.
ContentView
;
73
* one corresponding {@link
ContentView
} instance.
75
* A {@link ContentViewClient} may be shared between multiple {@link
ContentView
}s,
78
* corresponding
ContentView
to the corresponding ContentViewClient methods,
152
//
ContentView
.
Completed in 765 milliseconds
1
2