OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 blink::WebIconURL::Type icon_type); | 254 blink::WebIconURL::Type icon_type); |
255 virtual void didFinishDocumentLoad(blink::WebFrame* frame); | 255 virtual void didFinishDocumentLoad(blink::WebFrame* frame); |
256 virtual void didHandleOnloadEvents(blink::WebFrame* frame); | 256 virtual void didHandleOnloadEvents(blink::WebFrame* frame); |
257 virtual void didFailLoad(blink::WebFrame* frame, | 257 virtual void didFailLoad(blink::WebFrame* frame, |
258 const blink::WebURLError& error); | 258 const blink::WebURLError& error); |
259 virtual void didFinishLoad(blink::WebFrame* frame); | 259 virtual void didFinishLoad(blink::WebFrame* frame); |
260 virtual void didNavigateWithinPage(blink::WebFrame* frame, | 260 virtual void didNavigateWithinPage(blink::WebFrame* frame, |
261 bool is_new_navigation); | 261 bool is_new_navigation); |
262 virtual void didUpdateCurrentHistoryItem(blink::WebFrame* frame); | 262 virtual void didUpdateCurrentHistoryItem(blink::WebFrame* frame); |
263 virtual void showContextMenu(const blink::WebContextMenuData& data); | 263 virtual void showContextMenu(const blink::WebContextMenuData& data); |
| 264 virtual void clearContextMenu(); |
264 virtual void willRequestAfterPreconnect(blink::WebFrame* frame, | 265 virtual void willRequestAfterPreconnect(blink::WebFrame* frame, |
265 blink::WebURLRequest& request); | 266 blink::WebURLRequest& request); |
266 virtual void willSendRequest( | 267 virtual void willSendRequest( |
267 blink::WebFrame* frame, | 268 blink::WebFrame* frame, |
268 unsigned identifier, | 269 unsigned identifier, |
269 blink::WebURLRequest& request, | 270 blink::WebURLRequest& request, |
270 const blink::WebURLResponse& redirect_response); | 271 const blink::WebURLResponse& redirect_response); |
271 virtual void didReceiveResponse( | 272 virtual void didReceiveResponse( |
272 blink::WebFrame* frame, | 273 blink::WebFrame* frame, |
273 unsigned identifier, | 274 unsigned identifier, |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 // always respond properly to the request, so we don't have to worry so | 417 // always respond properly to the request, so we don't have to worry so |
417 // much about leaks. | 418 // much about leaks. |
418 IDMap<ContextMenuClient, IDMapExternalPointer> pending_context_menus_; | 419 IDMap<ContextMenuClient, IDMapExternalPointer> pending_context_menus_; |
419 | 420 |
420 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 421 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
421 }; | 422 }; |
422 | 423 |
423 } // namespace content | 424 } // namespace content |
424 | 425 |
425 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 426 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |