Index: Source/platform/Supplementable.h |
diff --git a/Source/platform/Supplementable.h b/Source/platform/Supplementable.h |
index eac9f5e9f8adae336a47a7e2f7c0b2873230f00d..f0a02c9043d32b261bb4766f62f7aa41741cfd7f 100644 |
--- a/Source/platform/Supplementable.h |
+++ b/Source/platform/Supplementable.h |
@@ -36,7 +36,7 @@ |
#include "wtf/Threading.h" |
#endif |
-namespace WebCore { |
+namespace blink { |
// What you should know about Supplementable and Supplement |
// ======================================================== |
@@ -247,15 +247,15 @@ template<typename T> |
class Supplementable : public SupplementableBase<T, false> { }; |
template<typename T> |
-struct ThreadingTrait<WebCore::SupplementBase<T, true> > { |
+struct ThreadingTrait<blink::SupplementBase<T, true> > { |
static const ThreadAffinity Affinity = ThreadingTrait<T>::Affinity; |
}; |
template<typename T> |
-struct ThreadingTrait<WebCore::SupplementableBase<T, true> > { |
+struct ThreadingTrait<blink::SupplementableBase<T, true> > { |
static const ThreadAffinity Affinity = ThreadingTrait<T>::Affinity; |
}; |
-} // namespace WebCore |
+} // namespace blink |
#endif // Supplementable_h |