summaryrefslogtreecommitdiffstats
path: root/win8/test
diff options
context:
space:
mode:
authorerg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-24 22:12:35 +0000
committererg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-24 22:12:35 +0000
commitf353dba90985f6f9314c932c6c0ad016e2701f75 (patch)
tree911553a89b23d67ae1947f89f83312094c7c1cf4 /win8/test
parent483d57876597b92189be4504a1dc90b754c4c2e0 (diff)
downloadchromium_src-f353dba90985f6f9314c932c6c0ad016e2701f75.zip
chromium_src-f353dba90985f6f9314c932c6c0ad016e2701f75.tar.gz
chromium_src-f353dba90985f6f9314c932c6c0ad016e2701f75.tar.bz2
Revert 202038 "Remove all but one use of WeakPtrFactory::DetachF..."
Caused local failures in linux_aura builds. Unsure why this isn't showing up on the bots. > Remove all but one use of WeakPtrFactory::DetachFromThread. > > This CL changes WeakPtr in the following ways: > * Changes thread-bindings semantics so that WeakPtrs only become bound when the first one is dereferenced, or the owning factory invalidates them. > * Removes WeakPtrFactory::DetachFromThread. > * Renames SupportsWeakPtr::DetachFromThread to DetachFromThreadHack. > > Calling code changes to allow this: > * Unnecessary DetachFromThread() calls removed from PluginInfoMessageFilter, DhcpProxyScript[Adapter]FetcherWin and (Chromoting's) PolicyWatcherLinux. > * DetachFromThread() calls rendered unnecessary by change in binding semantics removed from IOThread, SearchProviderInstallData, RuleRegistryWithCache and GLSurfaceGlx. > > WebGraphicsContext3DInProcessCommandBufferImpl uses the re-named DetachFromThreadHack() - bug 234964 tracks work to remove that use. > > Review URL: https://chromiumcodereview.appspot.com/14299011 BUG=232143, 234964, 243914 TBR=wez@chromium.org Review URL: https://codereview.chromium.org/15819004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202193 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'win8/test')
-rw-r--r--win8/test/ui_automation_client.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/win8/test/ui_automation_client.cc b/win8/test/ui_automation_client.cc
index ef742f2..8c866308 100644
--- a/win8/test/ui_automation_client.cc
+++ b/win8/test/ui_automation_client.cc
@@ -158,7 +158,11 @@ HRESULT UIAutomationClient::Context::EventHandler::HandleAutomationEvent(
base::WeakPtr<UIAutomationClient::Context>
UIAutomationClient::Context::Create() {
Context* context = new Context();
- return context->weak_ptr_factory_.GetWeakPtr();
+ base::WeakPtr<Context> context_ptr(context->weak_ptr_factory_.GetWeakPtr());
+ // Unbind from this thread so that the instance will bind to the automation
+ // thread when Initialize is called.
+ context->weak_ptr_factory_.DetachFromThread();
+ return context_ptr;
}
void UIAutomationClient::Context::DeleteOnAutomationThread() {