Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: content/browser/renderer_host/render_view_host_impl.h

Issue 9514016: Fixing a problem, where a hung renderer process is not killed when navigating away (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final cleanup update. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; 348 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
349 virtual void GotFocus() OVERRIDE; 349 virtual void GotFocus() OVERRIDE;
350 virtual void LostCapture() OVERRIDE; 350 virtual void LostCapture() OVERRIDE;
351 virtual void LostMouseLock() OVERRIDE; 351 virtual void LostMouseLock() OVERRIDE;
352 virtual void ForwardMouseEvent( 352 virtual void ForwardMouseEvent(
353 const WebKit::WebMouseEvent& mouse_event) OVERRIDE; 353 const WebKit::WebMouseEvent& mouse_event) OVERRIDE;
354 virtual void OnMouseActivate() OVERRIDE; 354 virtual void OnMouseActivate() OVERRIDE;
355 virtual void ForwardKeyboardEvent( 355 virtual void ForwardKeyboardEvent(
356 const NativeWebKeyboardEvent& key_event) OVERRIDE; 356 const NativeWebKeyboardEvent& key_event) OVERRIDE;
357 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; 357 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE;
358 virtual void StopHangMonitorTimeout() OVERRIDE;
358 359
359 // Creates a new RenderView with the given route id. 360 // Creates a new RenderView with the given route id.
360 void CreateNewWindow(int route_id, 361 void CreateNewWindow(int route_id,
361 const ViewHostMsg_CreateWindow_Params& params); 362 const ViewHostMsg_CreateWindow_Params& params);
362 363
363 // Creates a new RenderWidget with the given route id. |popup_type| indicates 364 // Creates a new RenderWidget with the given route id. |popup_type| indicates
364 // if this widget is a popup and what kind of popup it is (select, autofill). 365 // if this widget is a popup and what kind of popup it is (select, autofill).
365 void CreateNewWidget(int route_id, WebKit::WebPopupType popup_type); 366 void CreateNewWidget(int route_id, WebKit::WebPopupType popup_type);
366 367
367 // Creates a full screen RenderWidget. 368 // Creates a full screen RenderWidget.
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); 619 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);
619 }; 620 };
620 621
621 #if defined(COMPILER_MSVC) 622 #if defined(COMPILER_MSVC)
622 #pragma warning(pop) 623 #pragma warning(pop)
623 #endif 624 #endif
624 625
625 } // namespace content 626 } // namespace content
626 627
627 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 628 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host_browsertest.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698