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

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

Issue 14283005: Allow showing pending URL for new tab navigations, but only if safe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 6 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 WebKit::WebFrame* frame, const WebKit::WebURL& url, 529 WebKit::WebFrame* frame, const WebKit::WebURL& url,
530 const WebKit::WebString& name, unsigned long long documentId); 530 const WebKit::WebString& name, unsigned long long documentId);
531 virtual WebKit::WebMediaPlayer* createMediaPlayer( 531 virtual WebKit::WebMediaPlayer* createMediaPlayer(
532 WebKit::WebFrame* frame, 532 WebKit::WebFrame* frame,
533 const WebKit::WebURL& url, 533 const WebKit::WebURL& url,
534 WebKit::WebMediaPlayerClient* client); 534 WebKit::WebMediaPlayerClient* client);
535 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( 535 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
536 WebKit::WebFrame* frame, 536 WebKit::WebFrame* frame,
537 WebKit::WebApplicationCacheHostClient* client); 537 WebKit::WebApplicationCacheHostClient* client);
538 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); 538 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame);
539 virtual void didAccessInitialDocument(WebKit::WebFrame* frame);
539 virtual void didCreateFrame(WebKit::WebFrame* parent, 540 virtual void didCreateFrame(WebKit::WebFrame* parent,
540 WebKit::WebFrame* child); 541 WebKit::WebFrame* child);
541 virtual void didDisownOpener(WebKit::WebFrame* frame); 542 virtual void didDisownOpener(WebKit::WebFrame* frame);
542 virtual void frameDetached(WebKit::WebFrame* frame); 543 virtual void frameDetached(WebKit::WebFrame* frame);
543 virtual void willClose(WebKit::WebFrame* frame); 544 virtual void willClose(WebKit::WebFrame* frame);
544 virtual void didChangeName(WebKit::WebFrame* frame, 545 virtual void didChangeName(WebKit::WebFrame* frame,
545 const WebKit::WebString& name); 546 const WebKit::WebString& name);
546 virtual void loadURLExternally(WebKit::WebFrame* frame, 547 virtual void loadURLExternally(WebKit::WebFrame* frame,
547 const WebKit::WebURLRequest& request, 548 const WebKit::WebURLRequest& request,
548 WebKit::WebNavigationPolicy policy); 549 WebKit::WebNavigationPolicy policy);
(...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 // use the Observer interface to filter IPC messages and receive frame change 1555 // use the Observer interface to filter IPC messages and receive frame change
1555 // notifications. 1556 // notifications.
1556 // --------------------------------------------------------------------------- 1557 // ---------------------------------------------------------------------------
1557 1558
1558 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1559 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1559 }; 1560 };
1560 1561
1561 } // namespace content 1562 } // namespace content
1562 1563
1563 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1564 #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