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

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

Issue 2907463003: Remove window.status plumbing, it's unused and the spec says it's a dummy (Closed)
Patch Set: Drop accidental change Created 3 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
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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 bool CanOpenBeforeUnloadConfirmPanel() override; 101 bool CanOpenBeforeUnloadConfirmPanel() override;
102 bool OpenBeforeUnloadConfirmPanelDelegate(LocalFrame*, 102 bool OpenBeforeUnloadConfirmPanelDelegate(LocalFrame*,
103 bool is_reload) override; 103 bool is_reload) override;
104 void CloseWindowSoon() override; 104 void CloseWindowSoon() override;
105 bool OpenJavaScriptAlertDelegate(LocalFrame*, const String&) override; 105 bool OpenJavaScriptAlertDelegate(LocalFrame*, const String&) override;
106 bool OpenJavaScriptConfirmDelegate(LocalFrame*, const String&) override; 106 bool OpenJavaScriptConfirmDelegate(LocalFrame*, const String&) override;
107 bool OpenJavaScriptPromptDelegate(LocalFrame*, 107 bool OpenJavaScriptPromptDelegate(LocalFrame*,
108 const String& message, 108 const String& message,
109 const String& default_value, 109 const String& default_value,
110 String& result) override; 110 String& result) override;
111 void SetStatusbarText(const String& message) override;
112 bool TabsToLinks() override; 111 bool TabsToLinks() override;
113 void InvalidateRect(const IntRect&) override; 112 void InvalidateRect(const IntRect&) override;
114 void ScheduleAnimation(const PlatformFrameView*) override; 113 void ScheduleAnimation(const PlatformFrameView*) override;
115 IntRect ViewportToScreen(const IntRect&, 114 IntRect ViewportToScreen(const IntRect&,
116 const PlatformFrameView*) const override; 115 const PlatformFrameView*) const override;
117 float WindowToViewportScalar(const float) const override; 116 float WindowToViewportScalar(const float) const override;
118 WebScreenInfo GetScreenInfo() const override; 117 WebScreenInfo GetScreenInfo() const override;
119 WTF::Optional<IntRect> VisibleContentRectForPainting() const override; 118 WTF::Optional<IntRect> VisibleContentRectForPainting() const override;
120 void ContentsSizeChanged(LocalFrame*, const IntSize&) const override; 119 void ContentsSizeChanged(LocalFrame*, const IntSize&) const override;
121 void PageScaleFactorChanged() const override; 120 void PageScaleFactorChanged() const override;
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 257
259 DEFINE_TYPE_CASTS(ChromeClientImpl, 258 DEFINE_TYPE_CASTS(ChromeClientImpl,
260 ChromeClient, 259 ChromeClient,
261 client, 260 client,
262 client->IsChromeClientImpl(), 261 client->IsChromeClientImpl(),
263 client.IsChromeClientImpl()); 262 client.IsChromeClientImpl());
264 263
265 } // namespace blink 264 } // namespace blink
266 265
267 #endif 266 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/ChromeClient.h ('k') | third_party/WebKit/Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698