| 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 CHROME_BROWSER_MEDIA_ROUTER_ISSUE_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_ISSUE_MANAGER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_ROUTER_ISSUE_MANAGER_H_ | 6 #define CHROME_BROWSER_MEDIA_ROUTER_ISSUE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <vector> | 10 #include <vector> |
| 9 | 11 |
| 10 #include "base/containers/hash_tables.h" | 12 #include "base/containers/hash_tables.h" |
| 13 #include "base/macros.h" |
| 11 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 12 #include "base/threading/thread_checker.h" | 15 #include "base/threading/thread_checker.h" |
| 13 #include "chrome/browser/media/router/issue.h" | 16 #include "chrome/browser/media/router/issue.h" |
| 14 #include "chrome/browser/media/router/issues_observer.h" | 17 #include "chrome/browser/media/router/issues_observer.h" |
| 15 | 18 |
| 16 namespace media_router { | 19 namespace media_router { |
| 17 | 20 |
| 18 // IssueManager keeps track of current issues related to casting | 21 // IssueManager keeps track of current issues related to casting |
| 19 // connectivity and quality. | 22 // connectivity and quality. |
| 20 // TODO(apacible): Determine what other issues will be handled here. | 23 // TODO(apacible): Determine what other issues will be handled here. |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 Issue::Id top_issue_id_; | 73 Issue::Id top_issue_id_; |
| 71 | 74 |
| 72 base::ThreadChecker thread_checker_; | 75 base::ThreadChecker thread_checker_; |
| 73 | 76 |
| 74 DISALLOW_COPY_AND_ASSIGN(IssueManager); | 77 DISALLOW_COPY_AND_ASSIGN(IssueManager); |
| 75 }; | 78 }; |
| 76 | 79 |
| 77 } // namespace media_router | 80 } // namespace media_router |
| 78 | 81 |
| 79 #endif // CHROME_BROWSER_MEDIA_ROUTER_ISSUE_MANAGER_H_ | 82 #endif // CHROME_BROWSER_MEDIA_ROUTER_ISSUE_MANAGER_H_ |
| OLD | NEW |