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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 305103003: Fix for 'Simple Adblock' extension crashes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: jsbell's review comments Created 6 years, 6 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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 // appropriate section, add it there. If not, there are some random functions 522 // appropriate section, add it there. If not, there are some random functions
523 // nearer to the top you can add it to. 523 // nearer to the top you can add it to.
524 524
525 // Cannot use std::set unfortunately since linked_ptr<> does not support 525 // Cannot use std::set unfortunately since linked_ptr<> does not support
526 // operator<. 526 // operator<.
527 typedef std::vector<linked_ptr<ImageResourceFetcher> > 527 typedef std::vector<linked_ptr<ImageResourceFetcher> >
528 ImageResourceFetcherList; 528 ImageResourceFetcherList;
529 529
530 protected: 530 protected:
531 // RenderWidget overrides: 531 // RenderWidget overrides:
532 virtual void OnClose() OVERRIDE;
532 virtual void Close() OVERRIDE; 533 virtual void Close() OVERRIDE;
533 virtual void OnResize(const ViewMsg_Resize_Params& params) OVERRIDE; 534 virtual void OnResize(const ViewMsg_Resize_Params& params) OVERRIDE;
534 virtual void DidInitiatePaint() OVERRIDE; 535 virtual void DidInitiatePaint() OVERRIDE;
535 virtual void DidFlushPaint() OVERRIDE; 536 virtual void DidFlushPaint() OVERRIDE;
536 virtual gfx::Vector2d GetScrollOffset() OVERRIDE; 537 virtual gfx::Vector2d GetScrollOffset() OVERRIDE;
537 virtual void DidHandleKeyEvent() OVERRIDE; 538 virtual void DidHandleKeyEvent() OVERRIDE;
538 virtual bool WillHandleMouseEvent( 539 virtual bool WillHandleMouseEvent(
539 const blink::WebMouseEvent& event) OVERRIDE; 540 const blink::WebMouseEvent& event) OVERRIDE;
540 virtual bool WillHandleGestureEvent( 541 virtual bool WillHandleGestureEvent(
541 const blink::WebGestureEvent& event) OVERRIDE; 542 const blink::WebGestureEvent& event) OVERRIDE;
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
1199 // use the Observer interface to filter IPC messages and receive frame change 1200 // use the Observer interface to filter IPC messages and receive frame change
1200 // notifications. 1201 // notifications.
1201 // --------------------------------------------------------------------------- 1202 // ---------------------------------------------------------------------------
1202 1203
1203 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1204 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1204 }; 1205 };
1205 1206
1206 } // namespace content 1207 } // namespace content
1207 1208
1208 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1209 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698