summaryrefslogtreecommitdiffstats
path: root/webkit/port
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-27 18:23:17 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-27 18:23:17 +0000
commitbe661b9df8fd169c31174ed7778c7158125c5c36 (patch)
tree0fd9af159a8fcb9eb834bf4ea6b32076fedfc15f /webkit/port
parentccfeb68b76b69525f757dc54f01787cf26fe6e2a (diff)
downloadchromium_src-be661b9df8fd169c31174ed7778c7158125c5c36.zip
chromium_src-be661b9df8fd169c31174ed7778c7158125c5c36.tar.gz
chromium_src-be661b9df8fd169c31174ed7778c7158125c5c36.tar.bz2
Remove inline ToString(KURL) method from v8_bindings.h.
The method is not used and changes to KURL.h (or GURL) cause all the bindings to be re-compiled. Review URL: http://codereview.chromium.org/18818 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8729 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port')
-rw-r--r--webkit/port/bindings/v8/v8_binding.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/webkit/port/bindings/v8/v8_binding.h b/webkit/port/bindings/v8/v8_binding.h
index 15bdda0..97278e3 100644
--- a/webkit/port/bindings/v8/v8_binding.h
+++ b/webkit/port/bindings/v8/v8_binding.h
@@ -8,7 +8,6 @@
#include "config.h"
#include "CString.h"
-#include "KURL.h"
#include "MathExtras.h"
#include "PlatformString.h"
#include "StringBuffer.h"
@@ -122,10 +121,6 @@ inline String ToString(const String& string) {
return string;
}
-inline String ToString(const KURL& url) {
- return url.string();
-}
-
// If a WebCore string length is greater than the threshold,
// v8String creates an external string to avoid allocating
// the string in the large object space (which has a high memory overhead).