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

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

Issue 2349523002: Add support for edit commands in OOPIFs. (Closed)
Patch Set: Created 4 years, 3 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 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 30 matching lines...) Expand all
41 41
42 class EditorClientImpl final : public EditorClient { 42 class EditorClientImpl final : public EditorClient {
43 public: 43 public:
44 explicit EditorClientImpl(WebViewImpl*); 44 explicit EditorClientImpl(WebViewImpl*);
45 ~EditorClientImpl() override; 45 ~EditorClientImpl() override;
46 46
47 void respondToChangedContents() override; 47 void respondToChangedContents() override;
48 void respondToChangedSelection(LocalFrame*, SelectionType) override; 48 void respondToChangedSelection(LocalFrame*, SelectionType) override;
49 bool canCopyCut(LocalFrame*, bool defaultValue) const override; 49 bool canCopyCut(LocalFrame*, bool defaultValue) const override;
50 bool canPaste(LocalFrame*, bool defaultValue) const override; 50 bool canPaste(LocalFrame*, bool defaultValue) const override;
51 bool handleKeyboardEvent() override; 51 bool handleKeyboardEvent(LocalFrame*) override;
52 52
53 private: 53 private:
54 WebViewImpl* m_webView; 54 WebViewImpl* m_webView;
55 }; 55 };
56 56
57 } // namespace blink 57 } // namespace blink
58 58
59 #endif 59 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/EditorClient.h ('k') | third_party/WebKit/Source/web/EditorClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698