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

Unified Diff: third_party/WebKit/Source/core/dom/FunctionStringCallback.h

Issue 2896183002: Rename StringCallback to FunctionStringCallback. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/FunctionStringCallback.h
diff --git a/third_party/WebKit/Source/core/dom/StringCallback.h b/third_party/WebKit/Source/core/dom/FunctionStringCallback.h
similarity index 88%
rename from third_party/WebKit/Source/core/dom/StringCallback.h
rename to third_party/WebKit/Source/core/dom/FunctionStringCallback.h
index d950f937e6bbbafc8d8652755a6086fbbf95dab2..e65f49e319a382e083f8afeb19c4f6e922d1808f 100644
--- a/third_party/WebKit/Source/core/dom/StringCallback.h
+++ b/third_party/WebKit/Source/core/dom/FunctionStringCallback.h
@@ -28,21 +28,22 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef StringCallback_h
-#define StringCallback_h
+#ifndef FunctionStringCallback_h
+#define FunctionStringCallback_h
#include "platform/heap/Handle.h"
#include "platform/wtf/Forward.h"
namespace blink {
-class StringCallback : public GarbageCollectedFinalized<StringCallback> {
+class FunctionStringCallback
+ : public GarbageCollectedFinalized<FunctionStringCallback> {
public:
- virtual ~StringCallback() {}
+ virtual ~FunctionStringCallback() {}
DEFINE_INLINE_VIRTUAL_TRACE() {}
virtual void handleEvent(const String& data) = 0;
};
} // namespace blink
-#endif // StringCallback_h
+#endif // FunctionStringCallback_h
« no previous file with comments | « third_party/WebKit/Source/core/dom/BUILD.gn ('k') | third_party/WebKit/Source/core/dom/FunctionStringCallback.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698