| 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 blink::WebIconURL::Type icon_type); | 302 blink::WebIconURL::Type icon_type); |
| 303 virtual void didFinishDocumentLoad(blink::WebLocalFrame* frame); | 303 virtual void didFinishDocumentLoad(blink::WebLocalFrame* frame); |
| 304 virtual void didHandleOnloadEvents(blink::WebLocalFrame* frame); | 304 virtual void didHandleOnloadEvents(blink::WebLocalFrame* frame); |
| 305 virtual void didFailLoad(blink::WebLocalFrame* frame, | 305 virtual void didFailLoad(blink::WebLocalFrame* frame, |
| 306 const blink::WebURLError& error); | 306 const blink::WebURLError& error); |
| 307 virtual void didFinishLoad(blink::WebLocalFrame* frame); | 307 virtual void didFinishLoad(blink::WebLocalFrame* frame); |
| 308 virtual void didNavigateWithinPage(blink::WebLocalFrame* frame, | 308 virtual void didNavigateWithinPage(blink::WebLocalFrame* frame, |
| 309 const blink::WebHistoryItem& item, | 309 const blink::WebHistoryItem& item, |
| 310 blink::WebHistoryCommitType commit_type); | 310 blink::WebHistoryCommitType commit_type); |
| 311 virtual void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame); | 311 virtual void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame); |
| 312 virtual void didChangeBrandColor(blink::WebLocalFrame* frame); |
| 312 virtual blink::WebNotificationPresenter* notificationPresenter(); | 313 virtual blink::WebNotificationPresenter* notificationPresenter(); |
| 313 virtual void didChangeSelection(bool is_empty_selection); | 314 virtual void didChangeSelection(bool is_empty_selection); |
| 314 virtual blink::WebColorChooser* createColorChooser( | 315 virtual blink::WebColorChooser* createColorChooser( |
| 315 blink::WebColorChooserClient* client, | 316 blink::WebColorChooserClient* client, |
| 316 const blink::WebColor& initial_color, | 317 const blink::WebColor& initial_color, |
| 317 const blink::WebVector<blink::WebColorSuggestion>& suggestions); | 318 const blink::WebVector<blink::WebColorSuggestion>& suggestions); |
| 318 virtual void runModalAlertDialog(const blink::WebString& message); | 319 virtual void runModalAlertDialog(const blink::WebString& message); |
| 319 virtual bool runModalConfirmDialog(const blink::WebString& message); | 320 virtual bool runModalConfirmDialog(const blink::WebString& message); |
| 320 virtual bool runModalPromptDialog(const blink::WebString& message, | 321 virtual bool runModalPromptDialog(const blink::WebString& message, |
| 321 const blink::WebString& default_value, | 322 const blink::WebString& default_value, |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 ScreenOrientationDispatcher* screen_orientation_dispatcher_; | 635 ScreenOrientationDispatcher* screen_orientation_dispatcher_; |
| 635 | 636 |
| 636 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 637 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 637 | 638 |
| 638 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 639 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 639 }; | 640 }; |
| 640 | 641 |
| 641 } // namespace content | 642 } // namespace content |
| 642 | 643 |
| 643 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 644 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |