| 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
|
|
|