Revert 248827 "android: Migrate old content readback to use asyn..."
[chromium-blink-merge.git] / chromeos / network / network_policy_observer.h
blobc51982ebe7b9ab91098229159d72d1611daee92b
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROMEOS_NETWORK_NETWORK_POLICY_OBSERVER_H_
6 #define CHROMEOS_NETWORK_NETWORK_POLICY_OBSERVER_H_
8 #include <string>
10 #include "base/basictypes.h"
12 namespace chromeos {
14 class NetworkPolicyObserver {
15 public:
16 virtual void PolicyApplied(const std::string& service_path) = 0;
18 protected:
19 virtual ~NetworkPolicyObserver() {};
21 private:
22 DISALLOW_ASSIGN(NetworkPolicyObserver);
25 } // namespace chromeos
27 #endif // CHROMEOS_NETWORK_NETWORK_POLICY_OBSERVER_H_