diff options
author | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-20 18:26:15 +0000 |
---|---|---|
committer | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-20 18:26:15 +0000 |
commit | 810d40b7969be4da75695a82699e3c8620ac4b66 (patch) | |
tree | 2f7f78b7210edb0cfa0bacadfec1943fd3740076 /cc/resources/prioritized_resource_unittest.cc | |
parent | fe218424336071b7e1aaadb20f1e236d34c635de (diff) | |
download | chromium_src-810d40b7969be4da75695a82699e3c8620ac4b66.zip chromium_src-810d40b7969be4da75695a82699e3c8620ac4b66.tar.gz chromium_src-810d40b7969be4da75695a82699e3c8620ac4b66.tar.bz2 |
cc: Remove cc::Thread and cc::ThreadImpl.
These classes are replaced by using base::SingleThreadTaskRunner
directly.
R=piman,jamesr
BUG=251134
Depends on: https://codereview.chromium.org/17362002/
Review URL: https://chromiumcodereview.appspot.com/17114008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207491 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/resources/prioritized_resource_unittest.cc')
-rw-r--r-- | cc/resources/prioritized_resource_unittest.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cc/resources/prioritized_resource_unittest.cc b/cc/resources/prioritized_resource_unittest.cc index 09f55aa..92ce9ff 100644 --- a/cc/resources/prioritized_resource_unittest.cc +++ b/cc/resources/prioritized_resource_unittest.cc @@ -17,8 +17,7 @@ namespace cc { class PrioritizedResourceTest : public testing::Test { public: PrioritizedResourceTest() - : proxy_(scoped_ptr<Thread>()), - texture_size_(256, 256), + : texture_size_(256, 256), texture_format_(GL_RGBA), output_surface_(CreateFakeOutputSurface()) { DebugScopedSetImplThread impl_thread(&proxy_); |