root/chrome/browser/android/provider/blocking_ui_thread_async_request.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. RequestCompleted

// Copyright (c) 2012 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 "chrome/browser/android/provider/blocking_ui_thread_async_request.h"

BlockingUIThreadAsyncRequest::BlockingUIThreadAsyncRequest()
    : request_completed_(false, false) {
}

void BlockingUIThreadAsyncRequest::RequestCompleted() {
  // Currently all our use cases receive their request response in the UI
  // thread (the same thread that made the request). However this is not
  // a design constraint and can be changed if ever needed.
  DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
  request_completed_.Signal();
}

/* [<][>][^][v][top][bottom][index][help] */