| Index: third_party/WebKit/Source/bindings/core/v8/OnStackObjectChecker.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/OnStackObjectChecker.cpp b/third_party/WebKit/Source/bindings/core/v8/OnStackObjectChecker.cpp
|
| deleted file mode 100644
|
| index 31681016613f08d68e35b06b3e21f7f1db39fa3d..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/bindings/core/v8/OnStackObjectChecker.cpp
|
| +++ /dev/null
|
| @@ -1,34 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "bindings/core/v8/OnStackObjectChecker.h"
|
| -
|
| -#include "bindings/core/v8/Dictionary.h"
|
| -#include "wtf/HashSet.h"
|
| -
|
| -namespace blink {
|
| -
|
| -#if ENABLE(ASSERT)
|
| -OnStackObjectChecker::OnStackObjectChecker()
|
| -{
|
| -}
|
| -
|
| -OnStackObjectChecker::~OnStackObjectChecker()
|
| -{
|
| - // All dictionaries must be removed before the checker is destructed.
|
| - ASSERT(m_dictionaries.isEmpty());
|
| -}
|
| -
|
| -void OnStackObjectChecker::add(Dictionary* dictionary)
|
| -{
|
| - m_dictionaries.add(dictionary);
|
| -}
|
| -
|
| -void OnStackObjectChecker::remove(Dictionary* dictionary)
|
| -{
|
| - m_dictionaries.remove(dictionary);
|
| -}
|
| -#endif // ENABLE(ASSERT)
|
| -
|
| -} // namespace blink
|
|
|