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

Unified Diff: third_party/WebKit/Source/platform/NotImplemented.cpp

Issue 1826283004: Revert NotImplemented() changes in r383029 and r383047. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/platform/NotImplemented.cpp
diff --git a/third_party/WebKit/Source/core/dom/DOMStringMap.cpp b/third_party/WebKit/Source/platform/NotImplemented.cpp
similarity index 84%
copy from third_party/WebKit/Source/core/dom/DOMStringMap.cpp
copy to third_party/WebKit/Source/platform/NotImplemented.cpp
index 48ed337a359c89bb3a0bfa874ebe25812cacfc42..b48c3715b2d4f9683cf5caa26dedd24848d5fe33 100644
--- a/third_party/WebKit/Source/core/dom/DOMStringMap.cpp
+++ b/third_party/WebKit/Source/platform/NotImplemented.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
+ * Copyright (C) 2012 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -23,15 +23,19 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "core/dom/DOMStringMap.h"
+#include "platform/NotImplemented.h"
+
+#include "platform/Logging.h"
namespace blink {
-DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(DOMStringMap);
+#if !LOG_DISABLED
-bool DOMStringMap::namedPropertyQuery(const AtomicString& name, ExceptionState&)
+WTFLogChannel* notImplementedLoggingChannel()
{
- return contains(name);
+ return &LogNotYetImplemented;
}
+#endif
+
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/platform/NotImplemented.h ('k') | third_party/WebKit/Source/platform/PlatformKeyboardEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698