Searched refs:shell (Results 276 - 300 of 765) sorted by path

<<11121314151617181920>>

/external/chromium_org/content/public/test/
H A Dcontent_browser_test_utils.h78 void ShellCreated(Shell* shell);
/external/chromium_org/content/renderer/
H A Dbrowser_render_view_browsertest.cc25 #include "content/shell/browser/shell.h"
26 #include "content/shell/browser/shell_browser_context.h"
27 #include "content/shell/browser/shell_content_browser_client.h"
28 #include "content/shell/common/shell_content_client.h"
29 #include "content/shell/renderer/shell_content_renderer_client.h"
163 shell()->web_contents(), base::ASCIIToUTF16(expected_title));
166 shell(), url, num_navigations);
209 shell()->web_contents()->GetMainFrame()->GetProcess()->GetID();
219 NavigateToURLBlockUntilNavigationsComplete(shell(), test_ur
[all...]
H A Ddom_serializer_browsertest.cc20 #include "content/shell/browser/shell.h"
787 NavigateToURL(shell(), file_url);
802 NavigateToURL(shell(), file_url);
830 NavigateToURL(shell(), file_url);
850 NavigateToURL(shell(), file_url);
870 NavigateToURL(shell(), file_url);
891 NavigateToURL(shell(), file_url);
905 NavigateToURL(shell(), GetTestUrl(".", "simple_page.html"));
925 NavigateToURL(shell(), GetTestUr
[all...]
H A Dresource_fetcher_browsertest.cc19 #include "content/shell/browser/shell.h"
312 NavigateToURL(shell(), GURL(url::kAboutBlankURL));
324 NavigateToURL(shell(), GURL(url::kAboutBlankURL));
338 NavigateToURL(shell(), GURL(url::kAboutBlankURL));
347 NavigateToURL(shell(), GURL(url::kAboutBlankURL));
362 NavigateToURL(shell(), GURL(url::kAboutBlankURL));
380 NavigateToURL(shell(), GURL(url::kAboutBlankURL));
395 NavigateToURL(shell(), GURL(url::kAboutBlankURL));
H A Dsavable_resources_browsertest.cc14 #include "content/shell/browser/shell.h"
38 NavigateToURL(shell(), file_url);
46 shell()->web_contents()->GetRoutingID()));
/external/chromium_org/content/shell/android/javatests/src/org/chromium/content_shell_apk/
H A DContentShellTestBase.java81 * Starts the content shell activity with the provided test url.
93 * Starts the content shell activity with the provided test url and optional command line
115 * Waits for the Active shell to finish loading. This times out after
134 Shell shell = activity.getActiveShell();
135 if (shell != null) {
140 isLoaded.set(!shell.isLoading()
141 && !TextUtils.isEmpty(shell.getContentViewCore()
/external/chromium_org/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/
H A DChromiumLinkerTestActivity.java188 Shell shell = mShellManager.getActiveShell();
189 if (shell == null)
192 return shell.getContentViewCore();
/external/chromium_org/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/
H A DContentShellActivity.java34 public static final String COMMAND_LINE_FILE = "/data/local/tmp/content-shell-command-line";
224 Shell shell = getActiveShell();
225 return shell != null ? shell.getContentViewCore() : null;
/external/chromium_org/content/shell/android/
H A Dshell_manager.cc5 #include "content/shell/android/shell_manager.h"
13 #include "content/shell/browser/shell.h"
14 #include "content/shell/browser/shell_browser_context.h"
15 #include "content/shell/browser/shell_content_browser_client.h"
34 jobject CreateShellView(Shell* shell) { argument
40 reinterpret_cast<intptr_t>(shell)).Release();
H A Dshell_manager.h21 // Creates an Android specific shell view, which is our version of a shell
23 // render a shell window. Returns the java object representing the shell view.
25 jobject CreateShellView(Shell* shell);
27 // Removes a previously created shell view.
/external/chromium_org/content/shell/browser/
H A Dshell.cc5 #include "content/shell/browser/shell.h"
22 #include "content/shell/browser/notify_done_forwarder.h"
23 #include "content/shell/browser/shell_browser_main_parts.h"
24 #include "content/shell/browser/shell_content_browser_client.h"
25 #include "content/shell/browser/shell_devtools_frontend.h"
26 #include "content/shell/browser/shell_javascript_dialog_manager.h"
27 #include "content/shell/browser/webkit_test_controller.h"
28 #include "content/shell/common/shell_messages.h"
29 #include "content/shell/commo
43 DevToolsWebContentsObserver(Shell* shell, WebContents* web_contents) argument
97 Shell* shell = new Shell(web_contents); local
162 Shell* shell = CreateShell(web_contents, create_params.initial_size); local
[all...]
H A Dshell_android.cc5 #include "content/shell/browser/shell.h"
15 #include "content/shell/android/shell_manager.h"
107 Shell* shell = reinterpret_cast<Shell*>(shellPtr); local
108 shell->Close();
H A Dshell_devtools_delegate.cc5 #include "content/shell/browser/shell_devtools_delegate.h"
25 #include "content/shell/browser/shell.h"
253 Shell* shell = Shell::CreateNewWindow(browser_context_, local
259 new Target(DevToolsAgentHost::GetOrCreateFor(shell->web_contents())));
H A Dshell_devtools_frontend.cc5 #include "content/shell/browser/shell_devtools_frontend.h"
18 #include "content/shell/browser/shell.h"
19 #include "content/shell/browser/shell_browser_context.h"
20 #include "content/shell/browser/shell_browser_main_parts.h"
21 #include "content/shell/browser/shell_content_browser_client.h"
22 #include "content/shell/browser/shell_devtools_delegate.h"
23 #include "content/shell/browser/webkit_test_controller.h"
24 #include "content/shell/common/shell_switches.h"
69 Shell* shell local
[all...]
H A Dshell_views.cc5 #include "content/shell/browser/shell.h"
13 #include "content/shell/browser/shell_platform_data_aura.h"
54 // ViewDelegate implementation for aura content shell
78 Shell* shell, const content::ContextMenuParams& params)
80 shell_(shell),
114 // Maintain the UI controls and web view for content shell
125 ShellWindowDelegateView(Shell* shell) argument
126 : shell_(shell),
206 // Initialize the UI control contained in shell windo
77 ContextMenuModel( Shell* shell, const content::ContextMenuParams& params) argument
[all...]
/external/chromium_org/content/test/
H A Daccessibility_browser_test_utils.cc18 #include "content/shell/browser/shell.h"
23 AccessibilityNotificationWaiter::AccessibilityNotificationWaiter(Shell* shell) argument
28 WebContents* web_contents = shell->web_contents();
37 Shell* shell,
45 shell->web_contents());
36 AccessibilityNotificationWaiter( Shell* shell, AccessibilityMode accessibility_mode, ui::AXEvent event_type) argument
H A Daccessibility_browser_test_utils.h26 explicit AccessibilityNotificationWaiter(Shell* shell);
28 Shell* shell,
H A Dcontent_browser_test_test.cc12 #include "content/shell/browser/shell.h"
35 TitleWatcher title_watcher(shell()->web_contents(), expected_title);
36 NavigateToURL(shell(), url);
H A Dwebrtc_content_browsertest_base.cc13 #include "content/shell/browser/shell.h"
56 EXPECT_TRUE(ExecuteScriptAndExtractString(shell()->web_contents(),
H A Dwebui_resource_browsertest.cc14 #include "content/shell/browser/shell.h"
28 NavigateToURL(shell(), net::FilePathToFileURL(file));
30 content::WebContents* web_contents = shell()->web_contents();
/external/chromium_org/content/test/ppapi/
H A Dppapi_test.cc15 #include "content/shell/browser/shell.h"
97 JavascriptTestObserver observer(shell()->web_contents(), &handler);
98 shell()->LoadURL(test_url);
/external/chromium_org/media/tools/layout_tests/
H A Dlayouttest_analyzer_runner.py164 proc = Popen(cmd, shell=True)
/external/chromium_org/mojo/examples/aura_demo/
H A Daura_demo.cc166 new mojo::ViewManagerClientFactory(app->shell(), this));
/external/chromium_org/mojo/examples/browser/
H A Dbrowser.cc171 new ViewManagerClientFactory(app->shell(), this));
/external/chromium_org/mojo/examples/embedded_app/
H A Dembedded_app.cc54 new ViewManagerClientFactory(app->shell(), this));

Completed in 619 milliseconds

<<11121314151617181920>>