Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 954793002: Make load events in iframe elements work with OOPIF (Chromium side). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698