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

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

Issue 13846007: Allow showing pending URL for new tab navigations, but only if safe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view_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 (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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 WebKit::WebFrame* frame, const WebKit::WebURL& url, 513 WebKit::WebFrame* frame, const WebKit::WebURL& url,
514 const WebKit::WebString& name, unsigned long long documentId); 514 const WebKit::WebString& name, unsigned long long documentId);
515 virtual WebKit::WebMediaPlayer* createMediaPlayer( 515 virtual WebKit::WebMediaPlayer* createMediaPlayer(
516 WebKit::WebFrame* frame, 516 WebKit::WebFrame* frame,
517 const WebKit::WebURL& url, 517 const WebKit::WebURL& url,
518 WebKit::WebMediaPlayerClient* client); 518 WebKit::WebMediaPlayerClient* client);
519 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( 519 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
520 WebKit::WebFrame* frame, 520 WebKit::WebFrame* frame,
521 WebKit::WebApplicationCacheHostClient* client); 521 WebKit::WebApplicationCacheHostClient* client);
522 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); 522 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame);
523 virtual void didAccessInitialDocument(WebKit::WebFrame* frame);
523 virtual void didCreateFrame(WebKit::WebFrame* parent, 524 virtual void didCreateFrame(WebKit::WebFrame* parent,
524 WebKit::WebFrame* child); 525 WebKit::WebFrame* child);
525 virtual void didDisownOpener(WebKit::WebFrame* frame); 526 virtual void didDisownOpener(WebKit::WebFrame* frame);
526 virtual void frameDetached(WebKit::WebFrame* frame); 527 virtual void frameDetached(WebKit::WebFrame* frame);
527 virtual void willClose(WebKit::WebFrame* frame); 528 virtual void willClose(WebKit::WebFrame* frame);
528 virtual void didChangeName(WebKit::WebFrame* frame, 529 virtual void didChangeName(WebKit::WebFrame* frame,
529 const WebKit::WebString& name); 530 const WebKit::WebString& name);
530 virtual void loadURLExternally(WebKit::WebFrame* frame, 531 virtual void loadURLExternally(WebKit::WebFrame* frame,
531 const WebKit::WebURLRequest& request, 532 const WebKit::WebURLRequest& request,
532 WebKit::WebNavigationPolicy policy); 533 WebKit::WebNavigationPolicy policy);
(...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after
1579 // use the Observer interface to filter IPC messages and receive frame change 1580 // use the Observer interface to filter IPC messages and receive frame change
1580 // notifications. 1581 // notifications.
1581 // --------------------------------------------------------------------------- 1582 // ---------------------------------------------------------------------------
1582 1583
1583 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1584 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1584 }; 1585 };
1585 1586
1586 } // namespace content 1587 } // namespace content
1587 1588
1588 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1589 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698