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 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 ScreenOrientationDispatcher* screen_orientation_dispatcher_; | 639 ScreenOrientationDispatcher* screen_orientation_dispatcher_; |
639 | 640 |
640 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 641 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
641 | 642 |
642 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 643 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
643 }; | 644 }; |
644 | 645 |
645 } // namespace content | 646 } // namespace content |
646 | 647 |
647 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 648 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |