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

Unified Diff: chrome/browser/chromeos/dbus/dbus_thread_manager.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/dbus_thread_manager.h
diff --git a/chrome/browser/chromeos/dbus/dbus_thread_manager.h b/chrome/browser/chromeos/dbus/dbus_thread_manager.h
deleted file mode 100644
index f2caffa01fed739f5da37249522af565b1b7c4e6..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/dbus/dbus_thread_manager.h
+++ /dev/null
@@ -1,180 +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_DBUS_THREAD_MANAGER_H_
-#define CHROME_BROWSER_CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_
-#pragma once
-
-#include "base/memory/scoped_ptr.h"
-#include "base/memory/ref_counted.h"
-
-namespace base {
-class Thread;
-};
-
-namespace dbus {
-class Bus;
-};
-
-namespace chromeos {
-
-// Style Note: Clients are sorted by names.
-class BluetoothAdapterClient;
-class BluetoothDeviceClient;
-class BluetoothInputClient;
-class BluetoothManagerClient;
-class BluetoothNodeClient;
-class CashewClient;
-class CrosDisksClient;
-class CryptohomeClient;
-class DebugDaemonClient;
-class FlimflamIPConfigClient;
-class FlimflamNetworkClient;
-class FlimflamProfileClient;
-class ImageBurnerClient;
-class IntrospectableClient;
-class PowerManagerClient;
-class SessionManagerClient;
-class SpeechSynthesizerClient;
-class UpdateEngineClient;
-
-// DBusThreadManager manages the D-Bus thread, the thread dedicated to
-// handling asynchronous D-Bus operations.
-//
-// This class also manages D-Bus connections and D-Bus clients, which
-// depend on the D-Bus thread to ensure the right order of shutdowns for
-// the D-Bus thread, the D-Bus connections, and the D-Bus clients.
-//
-// CALLBACKS IN D-BUS CLIENTS:
-//
-// D-Bus clients managed by DBusThreadManager are guaranteed to be deleted
-// after the D-Bus thread so the clients don't need to worry if new
-// incoming messages arrive from the D-Bus thread during shutdown of the
-// clients. The UI message loop is not running during the shutdown hence
-// the UI message loop won't post tasks to D-BUS clients during the
-// shutdown. However, to be extra cautious, clients should use
-// WeakPtrFactory when creating callbacks that run on UI thread. See
-// session_manager_client.cc for examples.
-//
-class DBusThreadManager {
- public:
- // Sets the global instance. Must be called before any calls to Get().
- // We explicitly initialize and shut down the global object, rather than
- // making it a Singleton, to ensure clean startup and shutdown.
- static void Initialize();
-
- // Similar to Initialize(), but can inject an alternative
- // DBusThreadManager such as MockDBusThreadManager for testing.
- // The injected object will be owned by the internal pointer and deleted
- // by Shutdown().
- static void InitializeForTesting(DBusThreadManager* dbus_thread_manager);
-
- // Destroys the global instance.
- static void Shutdown();
-
- // Gets the global instance. Initialize() must be called first.
- static DBusThreadManager* Get();
-
- // Returns the D-Bus system bus instance, owned by DBusThreadManager.
- virtual dbus::Bus* GetSystemBus() = 0;
-
- // Returns the bluetooth adapter client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual BluetoothAdapterClient* GetBluetoothAdapterClient() = 0;
-
- // Returns the bluetooth device client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual BluetoothDeviceClient* GetBluetoothDeviceClient() = 0;
-
- // Returns the bluetooth input client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual BluetoothInputClient* GetBluetoothInputClient() = 0;
-
- // Returns the bluetooth manager client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual BluetoothManagerClient* GetBluetoothManagerClient() = 0;
-
- // Returns the bluetooth node client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual BluetoothNodeClient* GetBluetoothNodeClient() = 0;
-
- // Returns the Cashew client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual CashewClient* GetCashewClient() = 0;
-
- // Returns the cros-disks client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual CrosDisksClient* GetCrosDisksClient() = 0;
-
- // Returns the Cryptohome client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual CryptohomeClient* GetCryptohomeClient() = 0;
-
- // Returns the DebugDaemon client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual DebugDaemonClient* GetDebugDaemonClient() = 0;
-
- // Returns the Flimflam IPConfig client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual FlimflamIPConfigClient* GetFlimflamIPConfigClient() = 0;
-
- // Returns the Flimflam Network client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual FlimflamNetworkClient* GetFlimflamNetworkClient() = 0;
-
- // Returns the Flimflam Profile client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual FlimflamProfileClient* GetFlimflamProfileClient() = 0;
-
- // Returns the image burner client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManger is shut
- // down.
- virtual ImageBurnerClient* GetImageBurnerClient() = 0;
-
- // Returns the introspectable object client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManger is shut
- // down.
- virtual IntrospectableClient* GetIntrospectableClient() = 0;
-
- // Returns the power manager client, owned by DBusThreadManager.
- // See also comments at session_manager_client().
- virtual PowerManagerClient* GetPowerManagerClient() = 0;
-
- // Returns the session manager client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual SessionManagerClient* GetSessionManagerClient() = 0;
-
- // Returns the speech synthesizer client, owned by DBusThreadManager.
- // Do not cache this pointer and use it after DBusThreadManager is shut
- // down.
- virtual SpeechSynthesizerClient* GetSpeechSynthesizerClient() = 0;
-
- // Returns the update engine client, owned by DBusThreadManager. Do not
- // cache this pointer and use it after DBusThreadManager is shut down.
- virtual UpdateEngineClient* GetUpdateEngineClient() = 0;
-
- virtual ~DBusThreadManager();
-
- protected:
- DBusThreadManager();
-
- DISALLOW_COPY_AND_ASSIGN(DBusThreadManager);
-};
-
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_
« no previous file with comments | « chrome/browser/chromeos/dbus/dbus_method_call_status.h ('k') | chrome/browser/chromeos/dbus/dbus_thread_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698