summaryrefslogtreecommitdiffstats
path: root/webkit/pending
diff options
context:
space:
mode:
authorfqian@google.com <fqian@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-04 01:14:38 +0000
committerfqian@google.com <fqian@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-04 01:14:38 +0000
commit2ecc3274a76dd709e2aaf74d385f57b499d843b5 (patch)
tree08f5e57ba44140fb4cb8ee8bb426904b0205b533 /webkit/pending
parent3878d08262a721fd785844c56e3e7c0617647101 (diff)
downloadchromium_src-2ecc3274a76dd709e2aaf74d385f57b499d843b5.zip
chromium_src-2ecc3274a76dd709e2aaf74d385f57b499d843b5.tar.gz
chromium_src-2ecc3274a76dd709e2aaf74d385f57b499d843b5.tar.bz2
De-peerable part 2. Lot of changes on the binding side.
The binding code relies on the type id to cast 'void*' to the right C++ type in order to call ref() and deref(). Bump third_party/WebKit to 6342 to include depeered RefCounted files and etc. Review URL: http://codereview.chromium.org/12903 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6343 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/pending')
-rw-r--r--webkit/pending/Peerable.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/webkit/pending/Peerable.h b/webkit/pending/Peerable.h
deleted file mode 100644
index 7eda415..0000000
--- a/webkit/pending/Peerable.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) 2008 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.
-
-#ifndef Peerable_h
-#define Peerable_h
-
-#include <wtf/Noncopyable.h>
-
-#if USE(V8_BINDING)
-
-namespace WebCore {
-
-class Peerable : Noncopyable {
-public:
- virtual void setPeer(void* peer) = 0;
- virtual void* peer() const = 0;
-protected:
- virtual ~Peerable() { }
-};
-
-};
-
-#endif // USE(V8_BINDING)
-#endif // Peerable_h