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

Side by Side Diff: Source/web/ChromeClientImpl.h

Issue 174073007: Remove deprecated window.showModalDialog() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | « Source/core/page/CreateWindow.cpp ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 virtual void setWindowRect(const WebCore::FloatRect&) OVERRIDE; 78 virtual void setWindowRect(const WebCore::FloatRect&) OVERRIDE;
79 virtual WebCore::FloatRect windowRect() OVERRIDE; 79 virtual WebCore::FloatRect windowRect() OVERRIDE;
80 virtual WebCore::FloatRect pageRect() OVERRIDE; 80 virtual WebCore::FloatRect pageRect() OVERRIDE;
81 virtual void focus() OVERRIDE; 81 virtual void focus() OVERRIDE;
82 virtual bool canTakeFocus(WebCore::FocusType) OVERRIDE; 82 virtual bool canTakeFocus(WebCore::FocusType) OVERRIDE;
83 virtual void takeFocus(WebCore::FocusType) OVERRIDE; 83 virtual void takeFocus(WebCore::FocusType) OVERRIDE;
84 virtual void focusedNodeChanged(WebCore::Node*) OVERRIDE; 84 virtual void focusedNodeChanged(WebCore::Node*) OVERRIDE;
85 virtual WebCore::Page* createWindow( 85 virtual WebCore::Page* createWindow(
86 WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::Window Features&, WebCore::NavigationPolicy, WebCore::ShouldSendReferrer) OVERRIDE; 86 WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::Window Features&, WebCore::NavigationPolicy, WebCore::ShouldSendReferrer) OVERRIDE;
87 virtual void show(WebCore::NavigationPolicy) OVERRIDE; 87 virtual void show(WebCore::NavigationPolicy) OVERRIDE;
88 virtual bool canRunModal() OVERRIDE;
89 virtual void runModal() OVERRIDE;
90 virtual void setToolbarsVisible(bool) OVERRIDE; 88 virtual void setToolbarsVisible(bool) OVERRIDE;
91 virtual bool toolbarsVisible() OVERRIDE; 89 virtual bool toolbarsVisible() OVERRIDE;
92 virtual void setStatusbarVisible(bool) OVERRIDE; 90 virtual void setStatusbarVisible(bool) OVERRIDE;
93 virtual bool statusbarVisible() OVERRIDE; 91 virtual bool statusbarVisible() OVERRIDE;
94 virtual void setScrollbarsVisible(bool) OVERRIDE; 92 virtual void setScrollbarsVisible(bool) OVERRIDE;
95 virtual bool scrollbarsVisible() OVERRIDE; 93 virtual bool scrollbarsVisible() OVERRIDE;
96 virtual void setMenubarVisible(bool) OVERRIDE; 94 virtual void setMenubarVisible(bool) OVERRIDE;
97 virtual bool menubarVisible() OVERRIDE; 95 virtual bool menubarVisible() OVERRIDE;
98 virtual void setResizable(bool) OVERRIDE; 96 virtual void setResizable(bool) OVERRIDE;
99 virtual bool shouldReportDetailedMessageForSource(const WTF::String&) OVERRI DE; 97 virtual bool shouldReportDetailedMessageForSource(const WTF::String&) OVERRI DE;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); 217 explicit NavigatorContentUtilsClientImpl(WebViewImpl*);
220 218
221 WebViewImpl* m_webView; 219 WebViewImpl* m_webView;
222 }; 220 };
223 221
224 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr omeClientImpl(), client.isChromeClientImpl()); 222 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr omeClientImpl(), client.isChromeClientImpl());
225 223
226 } // namespace blink 224 } // namespace blink
227 225
228 #endif 226 #endif
OLDNEW
« no previous file with comments | « Source/core/page/CreateWindow.cpp ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698