Index: chromeos/network/network_policy_observer.h |
diff --git a/chromeos/network/network_policy_observer.h b/chromeos/network/network_policy_observer.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2ad2998392d14d35d2de6415ce8ec8067ccfba6d |
--- /dev/null |
+++ b/chromeos/network/network_policy_observer.h |
@@ -0,0 +1,27 @@ |
+// 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. |
+ |
+#ifndef CHROMEOS_NETWORK_NETWORK_POLICY_OBSERVER_H_ |
+#define CHROMEOS_NETWORK_NETWORK_POLICY_OBSERVER_H_ |
+ |
+#include <string> |
+ |
+#include "base/basictypes.h" |
+ |
+namespace chromeos { |
+ |
+class NetworkPolicyObserver { |
+ public: |
+ virtual void PolicyApplied(const std::string& service_path) = 0; |
+ |
+ protected: |
+ virtual ~NetworkPolicyObserver() {}; |
+ |
+ private: |
+ DISALLOW_ASSIGN(NetworkPolicyObserver); |
+}; |
+ |
+} // namespace chromeos |
+ |
+#endif // CHROMEOS_NETWORK_NETWORK_POLICY_OBSERVER_H_ |