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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 689123003: Revert of Navigation transitions (web to native app): Pass data after starting provisional load ... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 SessionStorageNamespaceMap GetSessionStorageNamespaceMap() override; 474 SessionStorageNamespaceMap GetSessionStorageNamespaceMap() override;
475 FrameTree* GetFrameTree() override; 475 FrameTree* GetFrameTree() override;
476 476
477 // NavigatorDelegate --------------------------------------------------------- 477 // NavigatorDelegate ---------------------------------------------------------
478 478
479 void DidStartProvisionalLoad(RenderFrameHostImpl* render_frame_host, 479 void DidStartProvisionalLoad(RenderFrameHostImpl* render_frame_host,
480 const GURL& validated_url, 480 const GURL& validated_url,
481 bool is_error_page, 481 bool is_error_page,
482 bool is_iframe_srcdoc) override; 482 bool is_iframe_srcdoc) override;
483 void DidStartNavigationTransition( 483 void DidStartNavigationTransition(
484 RenderFrameHostImpl* render_frame_host, 484 RenderFrameHostImpl* render_frame_host) override;
485 const TransitionLayerData& transition_data) override;
486 void DidFailProvisionalLoadWithError( 485 void DidFailProvisionalLoadWithError(
487 RenderFrameHostImpl* render_frame_host, 486 RenderFrameHostImpl* render_frame_host,
488 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) 487 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params)
489 override; 488 override;
490 void DidFailLoadWithError(RenderFrameHostImpl* render_frame_host, 489 void DidFailLoadWithError(RenderFrameHostImpl* render_frame_host,
491 const GURL& url, 490 const GURL& url,
492 int error_code, 491 int error_code,
493 const base::string16& error_description) override; 492 const base::string16& error_description) override;
494 void DidCommitProvisionalLoad(RenderFrameHostImpl* render_frame_host, 493 void DidCommitProvisionalLoad(RenderFrameHostImpl* render_frame_host,
495 const GURL& url, 494 const GURL& url,
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after
1223 scoped_ptr<WebContentsAudioMuter> audio_muter_; 1222 scoped_ptr<WebContentsAudioMuter> audio_muter_;
1224 1223
1225 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; 1224 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_;
1226 1225
1227 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1226 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1228 }; 1227 };
1229 1228
1230 } // namespace content 1229 } // namespace content
1231 1230
1232 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1231 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_android.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698