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

Unified Diff: chrome/browser/chromeos/dbus/blocking_method_caller.h

Issue 9838085: Move files inside chrome/browser/chromeos/dbus to chromeos/dbus (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 8 years, 8 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
Index: chrome/browser/chromeos/dbus/blocking_method_caller.h
diff --git a/chrome/browser/chromeos/dbus/blocking_method_caller.h b/chrome/browser/chromeos/dbus/blocking_method_caller.h
deleted file mode 100644
index 8e67a68ad396b7e89f472135c89277f1d2e856d7..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/dbus/blocking_method_caller.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// 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.
-
-#ifndef CHROME_BROWSER_CHROMEOS_DBUS_BLOCKING_METHOD_CALLER_H_
-#define CHROME_BROWSER_CHROMEOS_DBUS_BLOCKING_METHOD_CALLER_H_
-#pragma once
-
-#include "base/callback.h"
-#include "base/synchronization/waitable_event.h"
-
-namespace dbus {
-
-class Bus;
-class ObjectProxy;
-class MethodCall;
-class Response;
-
-} // namespace dbus
-
-namespace chromeos {
-
-// A utility class to call D-Bus methods in a synchronous (blocking) way.
-// Note: Blocking the thread until it returns is not a good idea in most cases.
-// Avoid using this class as hard as you can.
-class BlockingMethodCaller {
- public:
- BlockingMethodCaller(dbus::Bus* bus, dbus::ObjectProxy* proxy);
- virtual ~BlockingMethodCaller();
-
- // Calls the method and blocks until it returns.
- // The caller is responsible to delete the returned object.
- dbus::Response* CallMethodAndBlock(dbus::MethodCall* method_call);
-
- private:
- dbus::Bus* bus_;
- dbus::ObjectProxy* proxy_;
- base::WaitableEvent on_blocking_method_call_;
-
- DISALLOW_COPY_AND_ASSIGN(BlockingMethodCaller);
-};
-
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_DBUS_BLOCKING_METHOD_CALLER_H_
« no previous file with comments | « chrome/browser/chromeos/cryptohome/async_method_caller.cc ('k') | chrome/browser/chromeos/dbus/blocking_method_caller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698