summaryrefslogtreecommitdiffstats
path: root/content/utility
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-24 17:05:19 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-24 17:05:19 +0000
commit4db58d7f39fa1714a498d04280e5bd6891608ecb (patch)
treeb8ab85f4c4a5d4cfa27b0d84140c308bc372eb30 /content/utility
parenta94b9106345fed631ec3180206ba7019756d1bf1 (diff)
downloadchromium_src-4db58d7f39fa1714a498d04280e5bd6891608ecb.zip
chromium_src-4db58d7f39fa1714a498d04280e5bd6891608ecb.tar.gz
chromium_src-4db58d7f39fa1714a498d04280e5bd6891608ecb.tar.bz2
Remove WebKitPlatformSupportImpl and WebKitPlatformSupportChildImpl classes. They're not needed anymore now that BlinkPlatformImpl is in content.
R=scottmg@chromium.org Review URL: https://codereview.chromium.org/209053002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258958 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/utility')
-rw-r--r--content/utility/utility_thread_impl.cc4
-rw-r--r--content/utility/utility_thread_impl.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/content/utility/utility_thread_impl.cc b/content/utility/utility_thread_impl.cc
index 6fa43c8..c94312f 100644
--- a/content/utility/utility_thread_impl.cc
+++ b/content/utility/utility_thread_impl.cc
@@ -9,8 +9,8 @@
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/memory/scoped_vector.h"
+#include "content/child/blink_platform_impl.h"
#include "content/child/child_process.h"
-#include "content/child/webkitplatformsupport_impl.h"
#include "content/common/child_process_messages.h"
#include "content/common/plugin_list.h"
#include "content/common/utility_messages.h"
@@ -91,7 +91,7 @@ void UtilityThreadImpl::Init() {
// we run the utility thread on separate thread. This means that if any code
// needs WebKit initialized in the utility process, they need to have
// another path to support single process mode.
- webkit_platform_support_.reset(new WebKitPlatformSupportImpl);
+ webkit_platform_support_.reset(new BlinkPlatformImpl);
blink::initialize(webkit_platform_support_.get());
}
GetContentClient()->utility()->UtilityThreadStarted();
diff --git a/content/utility/utility_thread_impl.h b/content/utility/utility_thread_impl.h
index 8c4f79b..b4b5037 100644
--- a/content/utility/utility_thread_impl.h
+++ b/content/utility/utility_thread_impl.h
@@ -19,7 +19,7 @@ class FilePath;
}
namespace content {
-class WebKitPlatformSupportImpl;
+class BlinkPlatformImpl;
// This class represents the background thread where the utility task runs.
class UtilityThreadImpl : public UtilityThread,
@@ -58,7 +58,7 @@ class UtilityThreadImpl : public UtilityThread,
// True if running in single process mode.
bool single_process_;
- scoped_ptr<WebKitPlatformSupportImpl> webkit_platform_support_;
+ scoped_ptr<BlinkPlatformImpl> webkit_platform_support_;
DISALLOW_COPY_AND_ASSIGN(UtilityThreadImpl);
};