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

Side by Side Diff: third_party/WebKit/Source/core/loader/EmptyClients.h

Issue 2650113004: [WIP] Add support for Android SuggestionSpans when editing text (Closed)
Patch Set: Uploading the latest version from my repo so I can reference it Created 3 years, 7 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) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 void updateEventRectsForSubframeIfNecessary(LocalFrame* frame) override {} 214 void updateEventRectsForSubframeIfNecessary(LocalFrame* frame) override {}
215 void setHasScrollEventHandlers(LocalFrame*, bool) override {} 215 void setHasScrollEventHandlers(LocalFrame*, bool) override {}
216 216
217 void setTouchAction(LocalFrame*, TouchAction) override {} 217 void setTouchAction(LocalFrame*, TouchAction) override {}
218 218
219 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} 219 void didAssociateFormControlsAfterLoad(LocalFrame*) override {}
220 220
221 void annotatedRegionsChanged() override {} 221 void annotatedRegionsChanged() override {}
222 String acceptLanguages() override; 222 String acceptLanguages() override;
223 223
224 void updateCompositionInfo(LocalFrame*, bool) override {}
225
224 CompositorWorkerProxyClient* createCompositorWorkerProxyClient( 226 CompositorWorkerProxyClient* createCompositorWorkerProxyClient(
225 LocalFrame*) override { 227 LocalFrame*) override {
226 return nullptr; 228 return nullptr;
227 } 229 }
228 230
229 AnimationWorkletProxyClient* createAnimationWorkletProxyClient( 231 AnimationWorkletProxyClient* createAnimationWorkletProxyClient(
230 LocalFrame*) override { 232 LocalFrame*) override {
231 return nullptr; 233 return nullptr;
232 } 234 }
233 235
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 Frame* nextSibling() const override { return nullptr; } 472 Frame* nextSibling() const override { return nullptr; }
471 Frame* firstChild() const override { return nullptr; } 473 Frame* firstChild() const override { return nullptr; }
472 void frameFocused() const override {} 474 void frameFocused() const override {}
473 }; 475 };
474 476
475 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 477 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
476 478
477 } // namespace blink 479 } // namespace blink
478 480
479 #endif // EmptyClients_h 481 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalFrame.cpp ('k') | third_party/WebKit/Source/core/page/ChromeClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698