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

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

Issue 187843005: Remove stale frame ID references for RequestTransferURL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove incorrect check. Created 6 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 | Annotate | Revision Log
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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 virtual void SetMainFrameMimeType(const std::string& mime_type) OVERRIDE; 466 virtual void SetMainFrameMimeType(const std::string& mime_type) OVERRIDE;
467 virtual bool CanOverscrollContent() OVERRIDE; 467 virtual bool CanOverscrollContent() OVERRIDE;
468 virtual void NotifyChangedNavigationState( 468 virtual void NotifyChangedNavigationState(
469 InvalidateTypes changed_flags) OVERRIDE; 469 InvalidateTypes changed_flags) OVERRIDE;
470 virtual void AboutToNavigateRenderFrame( 470 virtual void AboutToNavigateRenderFrame(
471 RenderFrameHostImpl* render_frame_host) OVERRIDE; 471 RenderFrameHostImpl* render_frame_host) OVERRIDE;
472 virtual void DidStartNavigationToPendingEntry( 472 virtual void DidStartNavigationToPendingEntry(
473 RenderFrameHostImpl* render_frame_host, 473 RenderFrameHostImpl* render_frame_host,
474 const GURL& url, 474 const GURL& url,
475 NavigationController::ReloadType reload_type) OVERRIDE; 475 NavigationController::ReloadType reload_type) OVERRIDE;
476 virtual void RequestOpenURL(const OpenURLParams& params) OVERRIDE; 476 virtual void RequestOpenURL(RenderFrameHostImpl* render_frame_host,
477 const OpenURLParams& params) OVERRIDE;
477 478
478 // RenderWidgetHostDelegate -------------------------------------------------- 479 // RenderWidgetHostDelegate --------------------------------------------------
479 480
480 virtual void RenderWidgetDeleted( 481 virtual void RenderWidgetDeleted(
481 RenderWidgetHostImpl* render_widget_host) OVERRIDE; 482 RenderWidgetHostImpl* render_widget_host) OVERRIDE;
482 virtual bool PreHandleKeyboardEvent( 483 virtual bool PreHandleKeyboardEvent(
483 const NativeWebKeyboardEvent& event, 484 const NativeWebKeyboardEvent& event,
484 bool* is_keyboard_shortcut) OVERRIDE; 485 bool* is_keyboard_shortcut) OVERRIDE;
485 virtual void HandleKeyboardEvent( 486 virtual void HandleKeyboardEvent(
486 const NativeWebKeyboardEvent& event) OVERRIDE; 487 const NativeWebKeyboardEvent& event) OVERRIDE;
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
1044 // Whether this WebContents is responsible for displaying a subframe in a 1045 // Whether this WebContents is responsible for displaying a subframe in a
1045 // different process from its parent page. 1046 // different process from its parent page.
1046 bool is_subframe_; 1047 bool is_subframe_;
1047 1048
1048 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1049 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1049 }; 1050 };
1050 1051
1051 } // namespace content 1052 } // namespace content
1052 1053
1053 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1054 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698