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

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

Issue 1350673003: Remove WebContentsObserver::DidCommitNavigation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 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
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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 SessionStorageNamespaceMap GetSessionStorageNamespaceMap() override; 510 SessionStorageNamespaceMap GetSessionStorageNamespaceMap() override;
511 FrameTree* GetFrameTree() override; 511 FrameTree* GetFrameTree() override;
512 void SetIsVirtualKeyboardRequested(bool requested) override; 512 void SetIsVirtualKeyboardRequested(bool requested) override;
513 bool IsVirtualKeyboardRequested() override; 513 bool IsVirtualKeyboardRequested() override;
514 514
515 // NavigatorDelegate --------------------------------------------------------- 515 // NavigatorDelegate ---------------------------------------------------------
516 516
517 void DidStartNavigation(NavigationHandle* navigation_handle) override; 517 void DidStartNavigation(NavigationHandle* navigation_handle) override;
518 void DidRedirectNavigation(NavigationHandle* navigation_handle) override; 518 void DidRedirectNavigation(NavigationHandle* navigation_handle) override;
519 void ReadyToCommitNavigation(NavigationHandle* navigation_handle) override; 519 void ReadyToCommitNavigation(NavigationHandle* navigation_handle) override;
520 void DidCommitNavigation(NavigationHandle* navigation_handle) override;
521 void DidFinishNavigation(NavigationHandle* navigation_handle) override; 520 void DidFinishNavigation(NavigationHandle* navigation_handle) override;
522 void DidStartProvisionalLoad(RenderFrameHostImpl* render_frame_host, 521 void DidStartProvisionalLoad(RenderFrameHostImpl* render_frame_host,
523 const GURL& validated_url, 522 const GURL& validated_url,
524 bool is_error_page, 523 bool is_error_page,
525 bool is_iframe_srcdoc) override; 524 bool is_iframe_srcdoc) override;
526 void DidFailProvisionalLoadWithError( 525 void DidFailProvisionalLoadWithError(
527 RenderFrameHostImpl* render_frame_host, 526 RenderFrameHostImpl* render_frame_host,
528 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) 527 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params)
529 override; 528 override;
530 void DidFailLoadWithError(RenderFrameHostImpl* render_frame_host, 529 void DidFailLoadWithError(RenderFrameHostImpl* render_frame_host,
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after
1326 // Adds/removes a callback called on creation of each new WebContents. 1325 // Adds/removes a callback called on creation of each new WebContents.
1327 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1326 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1328 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1327 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1329 1328
1330 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1329 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1331 }; 1330 };
1332 1331
1333 } // namespace content 1332 } // namespace content
1334 1333
1335 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1334 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigator_impl.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