summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-03 19:44:30 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-03 19:44:30 +0000
commit03c52acd706a34c99a67df8137c2932231a6f818 (patch)
tree64e2332c01ea2c229868edda904663ad34d98f1d
parent4644a81a8e8f8dec3b3e4a8e033bd31dec0da4f0 (diff)
downloadchromium_src-03c52acd706a34c99a67df8137c2932231a6f818.zip
chromium_src-03c52acd706a34c99a67df8137c2932231a6f818.tar.gz
chromium_src-03c52acd706a34c99a67df8137c2932231a6f818.tar.bz2
content: Delete webkit_support_glue.cc file.
This file may have been necessary to implement some methods that were declared in webkit land. But as far as we can see this is not case anymore and thus we can remove it now. BUG=None TEST=content_unittests R=jam@chromium.org Review URL: https://codereview.chromium.org/183123007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254533 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--content/content_tests.gypi1
-rw-r--r--content/test/webkit_support_glue.cc35
2 files changed, 0 insertions, 36 deletions
diff --git a/content/content_tests.gypi b/content/content_tests.gypi
index a72e13e..83b3c72 100644
--- a/content/content_tests.gypi
+++ b/content/content_tests.gypi
@@ -177,7 +177,6 @@
'test/web_layer_tree_view_impl_for_testing.h',
'test/webkit_support.cc',
'test/webkit_support.h',
- 'test/webkit_support_glue.cc',
'test/weburl_loader_mock.cc',
'test/weburl_loader_mock.h',
'test/weburl_loader_mock_factory.cc',
diff --git a/content/test/webkit_support_glue.cc b/content/test/webkit_support_glue.cc
deleted file mode 100644
index abee72a..0000000
--- a/content/test/webkit_support_glue.cc
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2013 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 <string>
-
-#include "build/build_config.h"
-
-#if defined(OS_WIN)
-#include <windows.h>
-#endif
-// Functions needed by webkit_glue.
-
-namespace webkit_glue {
-
-void AppendToLog(const char*, int, const char*) {
-}
-
-bool GetPluginFinderURL(std::string* plugin_finder_url) {
- return false;
-}
-
-#if defined(OS_WIN)
-bool DownloadUrl(const std::string& url, HWND caller_window) {
- return false;
-}
-#endif
-
-void EnableSpdy(bool enable) {
-}
-
-void UserMetricsRecordAction(const std::string& action) {
-}
-
-} // namespace webkit_glue