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

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

Issue 1983913002: Test to see if we can bring in document data from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: WebLocalFrameImpl::loadData Created 4 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
« no previous file with comments | « no previous file | 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 void loadURLExternally(const blink::WebURLRequest& request, 480 void loadURLExternally(const blink::WebURLRequest& request,
481 blink::WebNavigationPolicy policy, 481 blink::WebNavigationPolicy policy,
482 const blink::WebString& suggested_name, 482 const blink::WebString& suggested_name,
483 bool should_replace_current_entry) override; 483 bool should_replace_current_entry) override;
484 blink::WebNavigationPolicy decidePolicyForNavigation( 484 blink::WebNavigationPolicy decidePolicyForNavigation(
485 const NavigationPolicyInfo& info) override; 485 const NavigationPolicyInfo& info) override;
486 blink::WebHistoryItem historyItemForNewChildFrame() override; 486 blink::WebHistoryItem historyItemForNewChildFrame() override;
487 void willSendSubmitEvent(const blink::WebFormElement& form) override; 487 void willSendSubmitEvent(const blink::WebFormElement& form) override;
488 void willSubmitForm(const blink::WebFormElement& form) override; 488 void willSubmitForm(const blink::WebFormElement& form) override;
489 void didCreateDataSource(blink::WebLocalFrame* frame, 489 void didCreateDataSource(blink::WebLocalFrame* frame,
490 blink::WebDataSource* datasource) override; 490 blink::WebDataSource* datasource,
491 int initiator) override;
491 void didStartProvisionalLoad(blink::WebLocalFrame* frame, 492 void didStartProvisionalLoad(blink::WebLocalFrame* frame,
492 double triggering_event_time) override; 493 double triggering_event_time) override;
493 void didReceiveServerRedirectForProvisionalLoad( 494 void didReceiveServerRedirectForProvisionalLoad(
494 blink::WebLocalFrame* frame) override; 495 blink::WebLocalFrame* frame) override;
495 void didFailProvisionalLoad(blink::WebLocalFrame* frame, 496 void didFailProvisionalLoad(blink::WebLocalFrame* frame,
496 const blink::WebURLError& error, 497 const blink::WebURLError& error,
497 blink::WebHistoryCommitType commit_type) override; 498 blink::WebHistoryCommitType commit_type) override;
498 void didCommitProvisionalLoad( 499 void didCommitProvisionalLoad(
499 blink::WebLocalFrame* frame, 500 blink::WebLocalFrame* frame,
500 const blink::WebHistoryItem& item, 501 const blink::WebHistoryItem& item,
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 #endif 1252 #endif
1252 1253
1253 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1254 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1254 1255
1255 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1256 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1256 }; 1257 };
1257 1258
1258 } // namespace content 1259 } // namespace content
1259 1260
1260 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1261 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698