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

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

Issue 589403004: Remove page id from ViewHostMsg_UpdateTargetURL; no one actually uses it on the browser side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: android Created 6 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; 407 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE;
408 virtual void RenderViewCreated(RenderViewHost* render_view_host) OVERRIDE; 408 virtual void RenderViewCreated(RenderViewHost* render_view_host) OVERRIDE;
409 virtual void RenderViewReady(RenderViewHost* render_view_host) OVERRIDE; 409 virtual void RenderViewReady(RenderViewHost* render_view_host) OVERRIDE;
410 virtual void RenderViewTerminated(RenderViewHost* render_view_host, 410 virtual void RenderViewTerminated(RenderViewHost* render_view_host,
411 base::TerminationStatus status, 411 base::TerminationStatus status,
412 int error_code) OVERRIDE; 412 int error_code) OVERRIDE;
413 virtual void RenderViewDeleted(RenderViewHost* render_view_host) OVERRIDE; 413 virtual void RenderViewDeleted(RenderViewHost* render_view_host) OVERRIDE;
414 virtual void UpdateState(RenderViewHost* render_view_host, 414 virtual void UpdateState(RenderViewHost* render_view_host,
415 int32 page_id, 415 int32 page_id,
416 const PageState& page_state) OVERRIDE; 416 const PageState& page_state) OVERRIDE;
417 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE; 417 virtual void UpdateTargetURL(const GURL& url) OVERRIDE;
418 virtual void Close(RenderViewHost* render_view_host) OVERRIDE; 418 virtual void Close(RenderViewHost* render_view_host) OVERRIDE;
419 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE; 419 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE;
420 virtual void DidCancelLoading() OVERRIDE; 420 virtual void DidCancelLoading() OVERRIDE;
421 virtual void DocumentAvailableInMainFrame( 421 virtual void DocumentAvailableInMainFrame(
422 RenderViewHost* render_view_host) OVERRIDE; 422 RenderViewHost* render_view_host) OVERRIDE;
423 virtual void RouteCloseEvent(RenderViewHost* rvh) OVERRIDE; 423 virtual void RouteCloseEvent(RenderViewHost* rvh) OVERRIDE;
424 virtual void RouteMessageEvent( 424 virtual void RouteMessageEvent(
425 RenderViewHost* rvh, 425 RenderViewHost* rvh,
426 const ViewMsg_PostMessage_Params& params) OVERRIDE; 426 const ViewMsg_PostMessage_Params& params) OVERRIDE;
427 virtual bool AddMessageToConsole(int32 level, 427 virtual bool AddMessageToConsole(int32 level,
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
1248 scoped_ptr<WebContentsAudioMuter> audio_muter_; 1248 scoped_ptr<WebContentsAudioMuter> audio_muter_;
1249 1249
1250 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; 1250 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_;
1251 1251
1252 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1252 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1253 }; 1253 };
1254 1254
1255 } // namespace content 1255 } // namespace content
1256 1256
1257 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1257 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host_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