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

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

Issue 2601763002: WebFrame cleanup: Move addMessageToConsole to WebLocalFrame (Closed)
Patch Set: Created 3 years, 11 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 void setNewWindowNavigationPolicy(WebNavigationPolicy); 172 void setNewWindowNavigationPolicy(WebNavigationPolicy);
173 void setCursorOverridden(bool); 173 void setCursorOverridden(bool);
174 174
175 bool hasOpenedPopup() const override; 175 bool hasOpenedPopup() const override;
176 PopupMenu* openPopupMenu(LocalFrame&, HTMLSelectElement&) override; 176 PopupMenu* openPopupMenu(LocalFrame&, HTMLSelectElement&) override;
177 PagePopup* openPagePopup(PagePopupClient*); 177 PagePopup* openPagePopup(PagePopupClient*);
178 void closePagePopup(PagePopup*); 178 void closePagePopup(PagePopup*);
179 DOMWindow* pagePopupWindowForTesting() const override; 179 DOMWindow* pagePopupWindowForTesting() const override;
180 180
181 bool shouldOpenModalDialogDuringPageDismissal( 181 bool shouldOpenModalDialogDuringPageDismissal(
182 const DialogType&, 182 LocalFrame&,
183 DialogType,
183 const String& dialogMessage, 184 const String& dialogMessage,
184 Document::PageDismissalType) const override; 185 Document::PageDismissalType) const override;
185 186
186 bool requestPointerLock(LocalFrame*) override; 187 bool requestPointerLock(LocalFrame*) override;
187 void requestPointerUnlock(LocalFrame*) override; 188 void requestPointerUnlock(LocalFrame*) override;
188 189
189 // AutofillClient pass throughs: 190 // AutofillClient pass throughs:
190 void didAssociateFormControlsAfterLoad(LocalFrame*) override; 191 void didAssociateFormControlsAfterLoad(LocalFrame*) override;
191 void handleKeyboardEventOnTextField(HTMLInputElement&, 192 void handleKeyboardEventOnTextField(HTMLInputElement&,
192 KeyboardEvent&) override; 193 KeyboardEvent&) override;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 240
240 DEFINE_TYPE_CASTS(ChromeClientImpl, 241 DEFINE_TYPE_CASTS(ChromeClientImpl,
241 ChromeClient, 242 ChromeClient,
242 client, 243 client,
243 client->isChromeClientImpl(), 244 client->isChromeClientImpl(),
244 client.isChromeClientImpl()); 245 client.isChromeClientImpl());
245 246
246 } // namespace blink 247 } // namespace blink
247 248
248 #endif 249 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698