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

Unified Diff: chromeos/dbus/dbus_thread_manager.cc

Issue 181413006: Replace misc. network stub flags with more flexible ones (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 10 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: chromeos/dbus/dbus_thread_manager.cc
diff --git a/chromeos/dbus/dbus_thread_manager.cc b/chromeos/dbus/dbus_thread_manager.cc
index 64279ad89570694fa177a329b3de25bd659612ce..78fd6444ba6d6dcb6d23b0fc791742a56ffc2acc 100644
--- a/chromeos/dbus/dbus_thread_manager.cc
+++ b/chromeos/dbus/dbus_thread_manager.cc
@@ -509,6 +509,19 @@ DBusThreadManager::~DBusThreadManager() {
}
}
+int DBusThreadManager::GetPowerCycleDelay() const {
+ return 0;
+}
+
+int DBusThreadManager::GetShillInteractiveDelay() const {
+ return 0;
+}
+
+std::string DBusThreadManager::GetShillInitialState(
+ const std::string& type) const {
+ return "";
+}
+
// static
DBusThreadManager* DBusThreadManager::Get() {
CHECK(g_dbus_thread_manager)

Powered by Google App Engine
This is Rietveld 408576698