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

Unified Diff: chromeos/dbus/fake_shill_manager_client.cc

Issue 14428004: dbus: Add FakeShillManagerClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add comment. Created 7 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
« no previous file with comments | « chromeos/dbus/fake_shill_manager_client.h ('k') | chromeos/dbus/mock_dbus_thread_manager_without_gmock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/fake_shill_manager_client.cc
diff --git a/chromeos/dbus/fake_shill_manager_client.cc b/chromeos/dbus/fake_shill_manager_client.cc
new file mode 100644
index 0000000000000000000000000000000000000000..586d5caf6b19764fe19ec8f8012fb56df8fe7b41
--- /dev/null
+++ b/chromeos/dbus/fake_shill_manager_client.cc
@@ -0,0 +1,117 @@
+// Copyright (c) 2013 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 "chromeos/dbus/fake_shill_manager_client.h"
+
+namespace chromeos {
+
+FakeShillManagerClient::FakeShillManagerClient() {
+}
+
+FakeShillManagerClient::~FakeShillManagerClient() {
+}
+
+void FakeShillManagerClient::RequestScan(const std::string& type,
+ const base::Closure& callback,
+ const ErrorCallback& error_callback) {
+}
+
+ShillManagerClient::TestInterface* FakeShillManagerClient::GetTestInterface() {
+ return NULL;
+}
+
+void FakeShillManagerClient::GetNetworksForGeolocation(
+ const DictionaryValueCallback& callback) {
+}
+
+void FakeShillManagerClient::ConnectToBestServices(
+ const base::Closure& callback,
+ const ErrorCallback& error_callback) {
+}
+
+void FakeShillManagerClient::RemovePropertyChangedObserver(
+ ShillPropertyChangedObserver* observer) {
+}
+
+void FakeShillManagerClient::VerifyAndEncryptData(
+ const std::string& certificate,
+ const std::string& public_key,
+ const std::string& nonce,
+ const std::string& signed_data,
+ const std::string& device_serial,
+ const std::string& data,
+ const StringCallback& callback,
+ const ErrorCallback& error_callback) {
+}
+
+void FakeShillManagerClient::GetService(const base::DictionaryValue& properties,
+ const ObjectPathCallback& callback,
+ const ErrorCallback& error_callback) {
+}
+
+base::DictionaryValue* FakeShillManagerClient::CallGetPropertiesAndBlock() {
+ return NULL;
+}
+
+void FakeShillManagerClient::AddPropertyChangedObserver(
+ ShillPropertyChangedObserver* observer) {
+}
+
+void FakeShillManagerClient::DisableTechnology(
+ const std::string& type,
+ const base::Closure& callback,
+ const ErrorCallback& error_callback) {
+}
+
+void FakeShillManagerClient::SetProperty(const std::string& name,
+ const base::Value& value,
+ const base::Closure& callback,
+ const ErrorCallback& error_callback) {
+}
+
+void FakeShillManagerClient::GetProperties(
+ const DictionaryValueCallback& callback) {
+}
+
+void FakeShillManagerClient::VerifyAndEncryptCredentials(
+ const std::string& certificate,
+ const std::string& public_key,
+ const std::string& nonce,
+ const std::string& signed_data,
+ const std::string& device_serial,
+ const std::string& service_path,
+ const StringCallback& callback,
+ const ErrorCallback& error_callback) {
+}
+
+void FakeShillManagerClient::EnableTechnology(
+ const std::string& type,
+ const base::Closure& callback,
+ const ErrorCallback& error_callback) {
+}
+
+void FakeShillManagerClient::ConfigureService(
+ const base::DictionaryValue& properties,
+ const ObjectPathCallback& callback,
+ const ErrorCallback& error_callback) {
+}
+
+void FakeShillManagerClient::VerifyDestination(
+ const std::string& certificate,
+ const std::string& public_key,
+ const std::string& nonce,
+ const std::string& signed_data,
+ const std::string& device_serial,
+ const BooleanCallback& callback,
+ const ErrorCallback& error_callback) {
+}
+
+void FakeShillManagerClient::ConfigureServiceForProfile(
+ const dbus::ObjectPath& profile_path,
+ const base::DictionaryValue& properties,
+ const ObjectPathCallback& callback,
+ const ErrorCallback& error_callback) {
+}
+
+} // namespace chromeos
« no previous file with comments | « chromeos/dbus/fake_shill_manager_client.h ('k') | chromeos/dbus/mock_dbus_thread_manager_without_gmock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698