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

Unified Diff: chromeos/network/network_profile_handler_stub.cc

Issue 13957012: Adding a NetworkProfileHandler used by ManagedNetworkConfigurationHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add preliminary userhash retrieval. Created 7 years, 7 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/network/network_profile_handler_stub.cc
diff --git a/chromeos/network/network_profile_handler_stub.cc b/chromeos/network/network_profile_handler_stub.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ed43c3a9a554ffdec657b25091eda9a6caff168d
--- /dev/null
+++ b/chromeos/network/network_profile_handler_stub.cc
@@ -0,0 +1,18 @@
+// 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/network/network_profile_handler_stub.h"
+
+
Joao da Silva 2013/05/07 14:31:36 nit: remove newline
+namespace chromeos {
+
+void NetworkProfileHandlerStub::AddProfile(const NetworkProfile& profile) {
+ NetworkProfileHandler::AddProfile(profile);
Joao da Silva 2013/05/07 14:31:36 You cloud just expose the protected method in the
pneubeck (no reviews) 2013/05/07 15:03:19 Done.
+}
+
+void NetworkProfileHandlerStub::RemoveProfile(const std::string& profile_path) {
+ NetworkProfileHandler::RemoveProfile(profile_path);
+}
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698