Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: extensions/browser/sandboxed_unpacker_unittest.cc

Issue 2283373002: Remove unneeded scoped_refptr<>::get() on method binding (Closed)
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/pepper/pepper_plugin_instance_impl.cc ('k') | gpu/ipc/client/gpu_channel_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/sandboxed_unpacker_unittest.cc
diff --git a/extensions/browser/sandboxed_unpacker_unittest.cc b/extensions/browser/sandboxed_unpacker_unittest.cc
index 0e3bf9e7a33a132937e60b394017851808e4a0c9..8e6c774f7a33d94bd2b57f4caf9b4bb764152412 100644
--- a/extensions/browser/sandboxed_unpacker_unittest.cc
+++ b/extensions/browser/sandboxed_unpacker_unittest.cc
@@ -115,9 +115,9 @@ class SandboxedUnpackerTest : public ExtensionsTest {
std::string fake_public_key;
base::Base64Encode(std::string(2048, 'k'), &fake_public_key);
base::ThreadTaskRunnerHandle::Get()->PostTask(
- FROM_HERE, base::Bind(&SandboxedUnpacker::StartWithDirectory,
- sandboxed_unpacker_.get(), fake_id,
- fake_public_key, temp_dir.Take()));
+ FROM_HERE,
+ base::Bind(&SandboxedUnpacker::StartWithDirectory, sandboxed_unpacker_,
+ fake_id, fake_public_key, temp_dir.Take()));
client_->WaitForUnpack();
}
« no previous file with comments | « content/renderer/pepper/pepper_plugin_instance_impl.cc ('k') | gpu/ipc/client/gpu_channel_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698