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

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

Issue 12541018: Allow showing pending URL for new tab navigations, but only if safe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix title in new and cloned tabs. Created 7 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
« 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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 WebKit::WebFrame* frame, const WebKit::WebURL& url, 517 WebKit::WebFrame* frame, const WebKit::WebURL& url,
518 const WebKit::WebString& name, unsigned long long documentId); 518 const WebKit::WebString& name, unsigned long long documentId);
519 virtual WebKit::WebMediaPlayer* createMediaPlayer( 519 virtual WebKit::WebMediaPlayer* createMediaPlayer(
520 WebKit::WebFrame* frame, 520 WebKit::WebFrame* frame,
521 const WebKit::WebURL& url, 521 const WebKit::WebURL& url,
522 WebKit::WebMediaPlayerClient* client); 522 WebKit::WebMediaPlayerClient* client);
523 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( 523 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
524 WebKit::WebFrame* frame, 524 WebKit::WebFrame* frame,
525 WebKit::WebApplicationCacheHostClient* client); 525 WebKit::WebApplicationCacheHostClient* client);
526 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); 526 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame);
527 virtual void didAccessInitialDocument(WebKit::WebFrame* frame);
527 virtual void didCreateFrame(WebKit::WebFrame* parent, 528 virtual void didCreateFrame(WebKit::WebFrame* parent,
528 WebKit::WebFrame* child); 529 WebKit::WebFrame* child);
529 virtual void didDisownOpener(WebKit::WebFrame* frame); 530 virtual void didDisownOpener(WebKit::WebFrame* frame);
530 virtual void frameDetached(WebKit::WebFrame* frame); 531 virtual void frameDetached(WebKit::WebFrame* frame);
531 virtual void willClose(WebKit::WebFrame* frame); 532 virtual void willClose(WebKit::WebFrame* frame);
532 virtual void didChangeName(WebKit::WebFrame* frame, 533 virtual void didChangeName(WebKit::WebFrame* frame,
533 const WebKit::WebString& name); 534 const WebKit::WebString& name);
534 virtual void loadURLExternally(WebKit::WebFrame* frame, 535 virtual void loadURLExternally(WebKit::WebFrame* frame,
535 const WebKit::WebURLRequest& request, 536 const WebKit::WebURLRequest& request,
536 WebKit::WebNavigationPolicy policy); 537 WebKit::WebNavigationPolicy policy);
(...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after
1573 // use the Observer interface to filter IPC messages and receive frame change 1574 // use the Observer interface to filter IPC messages and receive frame change
1574 // notifications. 1575 // notifications.
1575 // --------------------------------------------------------------------------- 1576 // ---------------------------------------------------------------------------
1576 1577
1577 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1578 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1578 }; 1579 };
1579 1580
1580 } // namespace content 1581 } // namespace content
1581 1582
1582 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1583 #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