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

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

Issue 275453002: Update WebFrameClient::didClearWindowObject API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « content/renderer/java/java_bridge_dispatcher.cc ('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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 virtual void didStartProvisionalLoad(blink::WebLocalFrame* frame); 267 virtual void didStartProvisionalLoad(blink::WebLocalFrame* frame);
268 virtual void didReceiveServerRedirectForProvisionalLoad( 268 virtual void didReceiveServerRedirectForProvisionalLoad(
269 blink::WebLocalFrame* frame); 269 blink::WebLocalFrame* frame);
270 virtual void didFailProvisionalLoad( 270 virtual void didFailProvisionalLoad(
271 blink::WebLocalFrame* frame, 271 blink::WebLocalFrame* frame,
272 const blink::WebURLError& error); 272 const blink::WebURLError& error);
273 virtual void didCommitProvisionalLoad( 273 virtual void didCommitProvisionalLoad(
274 blink::WebLocalFrame* frame, 274 blink::WebLocalFrame* frame,
275 const blink::WebHistoryItem& item, 275 const blink::WebHistoryItem& item,
276 blink::WebHistoryCommitType commit_type); 276 blink::WebHistoryCommitType commit_type);
277 virtual void didClearWindowObject(blink::WebLocalFrame* frame, int world_id); 277 virtual void didClearWindowObject(blink::WebLocalFrame* frame);
278 virtual void didCreateDocumentElement(blink::WebLocalFrame* frame); 278 virtual void didCreateDocumentElement(blink::WebLocalFrame* frame);
279 virtual void didReceiveTitle(blink::WebLocalFrame* frame, 279 virtual void didReceiveTitle(blink::WebLocalFrame* frame,
280 const blink::WebString& title, 280 const blink::WebString& title,
281 blink::WebTextDirection direction); 281 blink::WebTextDirection direction);
282 virtual void didChangeIcon(blink::WebLocalFrame* frame, 282 virtual void didChangeIcon(blink::WebLocalFrame* frame,
283 blink::WebIconURL::Type icon_type); 283 blink::WebIconURL::Type icon_type);
284 virtual void didFinishDocumentLoad(blink::WebLocalFrame* frame); 284 virtual void didFinishDocumentLoad(blink::WebLocalFrame* frame);
285 virtual void didHandleOnloadEvents(blink::WebLocalFrame* frame); 285 virtual void didHandleOnloadEvents(blink::WebLocalFrame* frame);
286 virtual void didFailLoad(blink::WebLocalFrame* frame, 286 virtual void didFailLoad(blink::WebLocalFrame* frame,
287 const blink::WebURLError& error); 287 const blink::WebURLError& error);
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 blink::WebUserMediaClient* web_user_media_client_; 564 blink::WebUserMediaClient* web_user_media_client_;
565 565
566 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 566 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
567 567
568 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 568 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
569 }; 569 };
570 570
571 } // namespace content 571 } // namespace content
572 572
573 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 573 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/java/java_bridge_dispatcher.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698