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

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

Issue 843683005: Fix a bit of C++11 in web/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/web/ChromeClientImpl.cpp » ('j') | Source/web/WebSearchableFormData.cpp » ('J')
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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 virtual DOMWindow* pagePopupWindowForTesting() const override; 158 virtual DOMWindow* pagePopupWindowForTesting() const override;
159 159
160 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, cons t String& dialogMessage, Document::PageDismissalType) const override; 160 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, cons t String& dialogMessage, Document::PageDismissalType) const override;
161 161
162 virtual bool requestPointerLock() override; 162 virtual bool requestPointerLock() override;
163 virtual void requestPointerUnlock() override; 163 virtual void requestPointerUnlock() override;
164 164
165 virtual bool shouldDisableDesktopWorkarounds() override; 165 virtual bool shouldDisableDesktopWorkarounds() override;
166 166
167 // AutofillClient pass throughs: 167 // AutofillClient pass throughs:
168 virtual void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMem ber<Element> >&, LocalFrame*) override; 168 virtual void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMem ber<Element>>&, LocalFrame*) override;
169 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent &) override; 169 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent &) override;
170 virtual void didChangeValueInTextField(HTMLFormControlElement&) override; 170 virtual void didChangeValueInTextField(HTMLFormControlElement&) override;
171 virtual void didEndEditingOnTextField(HTMLInputElement&) override; 171 virtual void didEndEditingOnTextField(HTMLInputElement&) override;
172 virtual void openTextDataListChooser(HTMLInputElement&) override; 172 virtual void openTextDataListChooser(HTMLInputElement&) override;
173 virtual void textFieldDataListChanged(HTMLInputElement&) override; 173 virtual void textFieldDataListChanged(HTMLInputElement&) override;
174 174
175 virtual void didCancelCompositionOnSelectionChange() override; 175 virtual void didCancelCompositionOnSelectionChange() override;
176 virtual void willSetInputMethodState() override; 176 virtual void willSetInputMethodState() override;
177 virtual void didUpdateTextOfFocusedElementByNonUserInput() override; 177 virtual void didUpdateTextOfFocusedElementByNonUserInput() override;
178 virtual void showImeIfNeeded() override; 178 virtual void showImeIfNeeded() override;
(...skipping 10 matching lines...) Expand all
189 WindowFeatures m_windowFeatures; 189 WindowFeatures m_windowFeatures;
190 190
191 PagePopupDriver* m_pagePopupDriver; 191 PagePopupDriver* m_pagePopupDriver;
192 }; 192 };
193 193
194 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl()); 194 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl());
195 195
196 } // namespace blink 196 } // namespace blink
197 197
198 #endif 198 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/web/ChromeClientImpl.cpp » ('j') | Source/web/WebSearchableFormData.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698