| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_CAST_CONFIG_DELEGATE_H_ | 5 #ifndef ASH_COMMON_CAST_CONFIG_DELEGATE_H_ |
| 6 #define ASH_CAST_CONFIG_DELEGATE_H_ | 6 #define ASH_COMMON_CAST_CONFIG_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "ash/ash_export.h" | 12 #include "ash/ash_export.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 15 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 16 | 16 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 // Add or remove an observer. | 114 // Add or remove an observer. |
| 115 virtual void AddObserver(Observer* observer) = 0; | 115 virtual void AddObserver(Observer* observer) = 0; |
| 116 virtual void RemoveObserver(Observer* observer) = 0; | 116 virtual void RemoveObserver(Observer* observer) = 0; |
| 117 | 117 |
| 118 private: | 118 private: |
| 119 DISALLOW_ASSIGN(CastConfigDelegate); | 119 DISALLOW_ASSIGN(CastConfigDelegate); |
| 120 }; | 120 }; |
| 121 | 121 |
| 122 } // namespace ash | 122 } // namespace ash |
| 123 | 123 |
| 124 #endif // ASH_CAST_CONFIG_DELEGATE_H_ | 124 #endif // ASH_COMMON_CAST_CONFIG_DELEGATE_H_ |
| OLD | NEW |