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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 virtual void didFailLoad(blink::WebLocalFrame* frame, | 416 virtual void didFailLoad(blink::WebLocalFrame* frame, |
417 const blink::WebURLError& error); | 417 const blink::WebURLError& error); |
418 virtual void didFinishLoad(blink::WebLocalFrame* frame); | 418 virtual void didFinishLoad(blink::WebLocalFrame* frame); |
419 virtual void didNavigateWithinPage(blink::WebLocalFrame* frame, | 419 virtual void didNavigateWithinPage(blink::WebLocalFrame* frame, |
420 const blink::WebHistoryItem& item, | 420 const blink::WebHistoryItem& item, |
421 blink::WebHistoryCommitType commit_type); | 421 blink::WebHistoryCommitType commit_type); |
422 virtual void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame); | 422 virtual void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame); |
423 virtual void addNavigationTransitionData( | 423 virtual void addNavigationTransitionData( |
424 const blink::WebTransitionElementData& data); | 424 const blink::WebTransitionElementData& data); |
425 virtual void didChangeThemeColor(); | 425 virtual void didChangeThemeColor(); |
| 426 virtual void dispatchLoad(); |
426 virtual void requestNotificationPermission( | 427 virtual void requestNotificationPermission( |
427 const blink::WebSecurityOrigin& origin, | 428 const blink::WebSecurityOrigin& origin, |
428 blink::WebNotificationPermissionCallback* callback); | 429 blink::WebNotificationPermissionCallback* callback); |
429 virtual void didChangeSelection(bool is_empty_selection); | 430 virtual void didChangeSelection(bool is_empty_selection); |
430 virtual blink::WebColorChooser* createColorChooser( | 431 virtual blink::WebColorChooser* createColorChooser( |
431 blink::WebColorChooserClient* client, | 432 blink::WebColorChooserClient* client, |
432 const blink::WebColor& initial_color, | 433 const blink::WebColor& initial_color, |
433 const blink::WebVector<blink::WebColorSuggestion>& suggestions); | 434 const blink::WebVector<blink::WebColorSuggestion>& suggestions); |
434 virtual void runModalAlertDialog(const blink::WebString& message); | 435 virtual void runModalAlertDialog(const blink::WebString& message); |
435 virtual bool runModalConfirmDialog(const blink::WebString& message); | 436 virtual bool runModalConfirmDialog(const blink::WebString& message); |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
869 #endif | 870 #endif |
870 | 871 |
871 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 872 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
872 | 873 |
873 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 874 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
874 }; | 875 }; |
875 | 876 |
876 } // namespace content | 877 } // namespace content |
877 | 878 |
878 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 879 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |