/external/chromium/chrome/browser/ui/ |
input_window_dialog_win.cc | 22 class ContentView; 56 // ContentView, as the name implies, is the content view for the InputWindow. 58 class ContentView : public views::View, 62 explicit ContentView(WinInputWindowDialog* delegate) 102 // The delegate that the ContentView uses to communicate changes to the 107 ScopedRunnableMethodFactory<ContentView> focus_grabber_factory_; 109 DISALLOW_COPY_AND_ASSIGN(ContentView); 113 // ContentView, views::DialogDelegate implementation: 115 bool ContentView::IsDialogButtonEnabled( 124 bool ContentView::Accept() [all...] |
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
ContentViewPopupZoomerTest.java | 20 private static PopupZoomer findPopupZoomer(ContentView view) { 30 private final ContentView mView; 32 public PopupShowingCriteria(ContentView view, boolean shouldBeShown) { 45 private final ContentView mView; 46 public PopupHasNonZeroDimensionsCriteria(ContentView view) { 86 final ContentView view = getActivity().getActiveContentView();
|
GestureDetectorResetTest.java | 34 private final ContentView mView; 40 ContentView view, 67 ContentView view, TestCallbackHelperContainer viewClient) 98 final ContentView view = getActivity().getActiveContentView();
|
ContentViewTestBase.java | 19 * Sets up the ContentView and injects the supplied object. Intended to be called from setUp(). 34 ContentView contentView = activity.getActiveContentView(); 35 contentView.getContentViewCore().addPossiblyUnsafeJavascriptInterface(object, 38 new TestCallbackHelperContainer(contentView); 46 "Failed to set up ContentView: " + Log.getStackTraceString(e)); 54 protected void loadDataSync(final ContentView contentView, final String data, 56 loadUrl(contentView, mTestCallbackHelperContainer, LoadUrlParams.createLoadDataParams(
|
NavigationTest.java | 28 private void goBack(final ContentView contentView, 35 contentView.goBack(); 40 private void reload(final ContentView contentView, 47 contentView.getContentViewCore().reload(true); 57 ContentView contentView = activity.getActiveContentView(); 59 new TestCallbackHelperContainer(contentView); 61 loadUrl(contentView, testCallbackHelperContainer, new LoadUrlParams(URL_2)) [all...] |
TestsJavaScriptEvalTest.java | 36 final ContentView view = getActivity().getActiveContentView();
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/ |
ChromeContextMenuItemDelegate.java | 8 import org.chromium.content.browser.ContentView; 15 * @return Whether or not this context menu is being shown for an incognito {@link ContentView}.
|
ContextMenuHelper.java | 19 import org.chromium.content.browser.ContentView; 23 * A helper class that handles generating context menus for {@link ContentView}s. 73 if (view instanceof ContentView) ((ContentView) view).setIgnoreRemainingTouchEvents();
|
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/input/ |
SelectPopupOtherContentViewTest.java | 11 import org.chromium.content.browser.ContentView; 47 * Tests that the showing select popup does not get closed because an unrelated ContentView 61 final ContentView view = getActivity().getActiveContentView(); 70 // Now create and destroy a different ContentView. 76 ContentView contentView = ContentView.newInstance( 78 contentView.destroy();
|
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/ |
JavaScriptUtils.java | 12 import org.chromium.content.browser.ContentView; 25 * Executes the given snippet of JavaScript code within the given ContentView. 29 final ContentView view, TestCallbackHelperContainer viewClient, 39 * Does not depend on ContentView and TestCallbackHelperContainer. 52 * Does not depend on ContentView and TestCallbackHelperContainer. 79 public static void executeJavaScript(final ContentView view, final String code) {
|
DOMUtils.java | 13 import org.chromium.content.browser.ContentView; 28 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) 74 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) 89 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) 100 final ContentView view, TestCallbackHelperContainer viewClient, String nodeId) 110 public static void scrollNodeIntoView(final ContentView view, 120 public static String getNodeContents(final ContentView view, 129 public static String getNodeValue(final ContentView view, 135 private static String getNodeField(String fieldName, final ContentView view, 170 public static boolean waitForNonZeroNodeBounds(final ContentView view [all...] |
TestCallbackHelperContainer.java | 8 import org.chromium.content.browser.ContentView; 21 public TestCallbackHelperContainer(ContentView contentView) { 23 contentView.getContentViewCore().setContentViewClient(mTestContentViewClient); 24 mTestWebContentsObserver = new TestWebContentsObserver(contentView.getContentViewCore());
|
/external/chromium/chrome/browser/speech/ |
speech_input_bubble_views.cc | 36 class ContentView 41 explicit ContentView(SpeechInputBubbleDelegate* delegate); 69 DISALLOW_COPY_AND_ASSIGN(ContentView); 72 ContentView::ContentView(SpeechInputBubbleDelegate* delegate) 116 void ContentView::UpdateLayout(SpeechInputBubbleBase::DisplayMode mode, 144 void ContentView::SetImage(const SkBitmap& image) { 148 void ContentView::ButtonPressed(views::Button* source, 159 void ContentView::LinkActivated(views::Link* source, int event_flags) { 164 gfx::Size ContentView::GetPreferredSize() [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/ |
TabObserver.java | 9 import org.chromium.content.browser.ContentView; 41 * Called when a context menu is shown for a {@link ContentView} owned by a {@link TabBase}.
|
/external/chromium_org/chrome/android/testshell/javatests/src/org/chromium/chrome/testshell/ |
ChromiumTestShellUrlTest.java | 11 import org.chromium.content.browser.ContentView; 42 // Ensure we have a ContentView and ContentViewCore. 43 final AtomicReference<ContentView> contentView = new AtomicReference<ContentView>(); 49 ContentView activeContentView = activity.getActiveContentView(); 50 contentView.set(activeContentView); 56 assertNotNull(contentView.get());
|
/external/chromium_org/content/shell/android/java/src/org/chromium/content_shell/ |
ShellManager.java | 14 import org.chromium.content.browser.ContentView; 103 ContentView contentView = mActiveShell.getContentView(); 104 if (contentView != null) { 105 mContentViewRenderView.setCurrentContentView(contentView); 106 contentView.onShow(); 116 ContentView contentView = shellView.getContentView(); 117 if (contentView != null) contentView.onHide() [all...] |
Shell.java | 24 import org.chromium.content.browser.ContentView; 45 private ContentView mContentView; 213 * Initializes the ContentView based on the native tab contents pointer passed in. 219 mContentView = ContentView.newInstance(getContext(), nativeTabContents, mWindow); 230 * @return The {@link ContentView} currently shown by this Shell. 232 public ContentView getContentView() {
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
JellyBeanContentView.java | 15 * A version of {@link ContentView} that supports JellyBean features. 17 class JellyBeanContentView extends ContentView {
|
ContentView.java | 36 public class ContentView extends FrameLayout 46 * Creates an instance of a ContentView. 51 * @return A ContentView instance. 53 public static ContentView newInstance(Context context, long nativeWebContents, 60 * Creates an instance of a ContentView. 66 * @return A ContentView instance. 68 public static ContentView newInstance(Context context, long nativeWebContents, 71 // When ContentView is moved to framework, we can define its own style in the res. 77 * Creates an instance of a ContentView. 84 * @return A ContentView instance [all...] |
/external/chromium_org/content/shell/android/linker_test_apk/src/org/chromium/content_linker_test_apk/ |
ContentLinkerTestActivity.java | 20 import org.chromium.content.browser.ContentView; 128 Log.e(TAG, "ContentView initialization failed."); 150 ContentView view = getActiveContentView(); 158 ContentView view = getActiveContentView(); 177 * @return The {@link ContentView} owned by the currently visible {@link Shell} or null if one 180 public ContentView getActiveContentView() {
|
/external/chromium_org/content/shell/android/javatests/src/org/chromium/content_shell_apk/ |
ContentShellTestBase.java | 16 import org.chromium.content.browser.ContentView; 101 * Returns the current ContentView. 103 protected ContentView getContentView() { 108 * Returns the current ContentViewCore or null if there is no ContentView. 159 * @param contentView The content view to load the URL in. 164 final ContentView contentView, TestCallbackHelperContainer callbackHelperContainer, 171 contentView.loadUrl(params);
|
/external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/ |
TestShellTab.java | 14 import org.chromium.content.browser.ContentView; 69 * Navigates this Tab's {@link ContentView} to a sanitized version of {@code url}. 82 ContentView contentView = getContentView(); 83 if (TextUtils.equals(url, contentView.getUrl())) { 84 contentView.getContentViewCore().reload(true); 87 contentView.loadUrl(new LoadUrlParams(url)); 89 contentView.loadUrl(LoadUrlParams.createLoadHttpPostParams(url, postData)); 95 * Navigates this Tab's {@link ContentView} to a sanitized version of {@code url}.
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/ |
SelectPopupTest.java | 13 import org.chromium.content.browser.ContentView; 74 final ContentView view = getActivity().getActiveContentView();
|
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/ |
AutofillPopupTest.java | 16 import org.chromium.content.browser.ContentView; 82 final ContentView view = getActivity().getActiveContentView(); 147 private void waitForAnchorViewAdd(final ContentView view) throws InterruptedException { 167 private void waitForInputFieldFill(final ContentView view,
|
/external/chromium_org/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ |
ContentShellActivity.java | 22 import org.chromium.content.browser.ContentView; 64 Log.e(TAG, "ContentView initialization failed.", e); 127 Log.e(TAG, "ContentView initialization failed."); 187 ContentView view = getActiveContentView(); 195 ContentView view = getActiveContentView(); 229 * @return The {@link ContentView} owned by the currently visible {@link Shell} or null if one 232 public ContentView getActiveContentView() {
|