Lines Matching refs:Shell

33 const int Shell::kDefaultTestWindowWidthDip = 800;
34 const int Shell::kDefaultTestWindowHeightDip = 600;
36 std::vector<Shell*> Shell::windows_;
37 base::Callback<void(Shell*)> Shell::shell_created_callback_;
39 bool Shell::quit_message_loop_ = true;
41 class Shell::DevToolsWebContentsObserver : public WebContentsObserver {
43 DevToolsWebContentsObserver(Shell* shell, WebContents* web_contents)
54 Shell* shell_;
59 Shell::Shell(WebContents* web_contents)
77 Shell::~Shell() {
95 Shell* Shell::CreateShell(WebContents* web_contents,
97 Shell* shell = new Shell(web_contents);
115 void Shell::CloseAllWindows() {
118 std::vector<Shell*> open_windows(windows_);
125 void Shell::SetShellCreatedCallback(
126 base::Callback<void(Shell*)> shell_created_callback) {
131 Shell* Shell::FromRenderViewHost(RenderViewHost* rvh) {
142 void Shell::Initialize() {
147 gfx::Size Shell::AdjustWindowSize(const gfx::Size& initial_size) {
153 Shell* Shell::CreateNewWindow(BrowserContext* browser_context,
162 Shell* shell = CreateShell(web_contents, create_params.initial_size);
168 void Shell::LoadURL(const GURL& url) {
172 void Shell::LoadURLForFrame(const GURL& url, const std::string& frame_name) {
181 void Shell::LoadDataWithBaseURL(const GURL& url, const std::string& data,
193 void Shell::AddNewContents(WebContents* source,
204 void Shell::GoBackOrForward(int offset) {
209 void Shell::Reload() {
214 void Shell::Stop() {
219 void Shell::UpdateNavigationControls(bool to_different_document) {
229 void Shell::ShowDevTools() {
233 void Shell::ShowDevToolsForElementAt(int x, int y) {
238 void Shell::ShowDevToolsForTest(const std::string& settings,
243 void Shell::CloseDevTools() {
251 gfx::NativeView Shell::GetContentView() {
257 WebContents* Shell::OpenURLFromTab(WebContents* source,
282 void Shell::LoadingStateChanged(WebContents* source,
288 void Shell::ToggleFullscreenModeForTab(WebContents* web_contents,
301 bool Shell::IsFullscreenForTabOrPending(const WebContents* web_contents) const {
309 void Shell::RequestToLockMouse(WebContents* web_contents,
315 void Shell::CloseContents(WebContents* source) {
319 bool Shell::CanOverscrollContent() const {
327 void Shell::DidNavigateMainFramePostCommit(WebContents* web_contents) {
331 JavaScriptDialogManager* Shell::GetJavaScriptDialogManager() {
337 bool Shell::AddMessageToConsole(WebContents* source,
345 void Shell::RendererUnresponsive(WebContents* source) {
351 void Shell::ActivateContents(WebContents* contents) {
355 void Shell::DeactivateContents(WebContents* contents) {
359 void Shell::WorkerCrashed(WebContents* source) {
365 bool Shell::HandleContextMenu(const content::ContextMenuParams& params) {
369 void Shell::WebContentsFocused(WebContents* contents) {
375 void Shell::TitleWasSet(NavigationEntry* entry, bool explicit_set) {
380 void Shell::InnerShowDevTools(const std::string& settings,
393 void Shell::OnDevToolsWebContentsDestroyed() {