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(); | 312 virtual void didChangeThemeColor(); |
313 virtual blink::WebNotificationPresenter* notificationPresenter(); | 313 virtual blink::WebNotificationPresenter* notificationPresenter(); |
314 virtual void didChangeSelection(bool is_empty_selection); | 314 virtual void didChangeSelection(bool is_empty_selection); |
315 virtual blink::WebColorChooser* createColorChooser( | 315 virtual blink::WebColorChooser* createColorChooser( |
316 blink::WebColorChooserClient* client, | 316 blink::WebColorChooserClient* client, |
317 const blink::WebColor& initial_color, | 317 const blink::WebColor& initial_color, |
318 const blink::WebVector<blink::WebColorSuggestion>& suggestions); | 318 const blink::WebVector<blink::WebColorSuggestion>& suggestions); |
319 virtual void runModalAlertDialog(const blink::WebString& message); | 319 virtual void runModalAlertDialog(const blink::WebString& message); |
320 virtual bool runModalConfirmDialog(const blink::WebString& message); | 320 virtual bool runModalConfirmDialog(const blink::WebString& message); |
321 virtual bool runModalPromptDialog(const blink::WebString& message, | 321 virtual bool runModalPromptDialog(const blink::WebString& message, |
322 const blink::WebString& default_value, | 322 const blink::WebString& default_value, |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
644 ScreenOrientationDispatcher* screen_orientation_dispatcher_; | 644 ScreenOrientationDispatcher* screen_orientation_dispatcher_; |
645 | 645 |
646 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 646 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
647 | 647 |
648 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 648 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
649 }; | 649 }; |
650 | 650 |
651 } // namespace content | 651 } // namespace content |
652 | 652 |
653 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 653 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |