| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 virtual void didStartProvisionalLoad(blink::WebLocalFrame* frame); | 267 virtual void didStartProvisionalLoad(blink::WebLocalFrame* frame); |
| 268 virtual void didReceiveServerRedirectForProvisionalLoad( | 268 virtual void didReceiveServerRedirectForProvisionalLoad( |
| 269 blink::WebLocalFrame* frame); | 269 blink::WebLocalFrame* frame); |
| 270 virtual void didFailProvisionalLoad( | 270 virtual void didFailProvisionalLoad( |
| 271 blink::WebLocalFrame* frame, | 271 blink::WebLocalFrame* frame, |
| 272 const blink::WebURLError& error); | 272 const blink::WebURLError& error); |
| 273 virtual void didCommitProvisionalLoad( | 273 virtual void didCommitProvisionalLoad( |
| 274 blink::WebLocalFrame* frame, | 274 blink::WebLocalFrame* frame, |
| 275 const blink::WebHistoryItem& item, | 275 const blink::WebHistoryItem& item, |
| 276 blink::WebHistoryCommitType commit_type); | 276 blink::WebHistoryCommitType commit_type); |
| 277 virtual void didClearWindowObject(blink::WebLocalFrame* frame, int world_id); | 277 virtual void didClearWindowObject(blink::WebLocalFrame* frame); |
| 278 virtual void didCreateDocumentElement(blink::WebLocalFrame* frame); | 278 virtual void didCreateDocumentElement(blink::WebLocalFrame* frame); |
| 279 virtual void didReceiveTitle(blink::WebLocalFrame* frame, | 279 virtual void didReceiveTitle(blink::WebLocalFrame* frame, |
| 280 const blink::WebString& title, | 280 const blink::WebString& title, |
| 281 blink::WebTextDirection direction); | 281 blink::WebTextDirection direction); |
| 282 virtual void didChangeIcon(blink::WebLocalFrame* frame, | 282 virtual void didChangeIcon(blink::WebLocalFrame* frame, |
| 283 blink::WebIconURL::Type icon_type); | 283 blink::WebIconURL::Type icon_type); |
| 284 virtual void didFinishDocumentLoad(blink::WebLocalFrame* frame); | 284 virtual void didFinishDocumentLoad(blink::WebLocalFrame* frame); |
| 285 virtual void didHandleOnloadEvents(blink::WebLocalFrame* frame); | 285 virtual void didHandleOnloadEvents(blink::WebLocalFrame* frame); |
| 286 virtual void didFailLoad(blink::WebLocalFrame* frame, | 286 virtual void didFailLoad(blink::WebLocalFrame* frame, |
| 287 const blink::WebURLError& error); | 287 const blink::WebURLError& error); |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 blink::WebUserMediaClient* web_user_media_client_; | 564 blink::WebUserMediaClient* web_user_media_client_; |
| 565 | 565 |
| 566 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 566 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 567 | 567 |
| 568 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 568 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 569 }; | 569 }; |
| 570 | 570 |
| 571 } // namespace content | 571 } // namespace content |
| 572 | 572 |
| 573 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 573 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |