| 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 IOS_CHROME_BROWSER_SYNC_SESSIONS_IOS_CHROME_LOCAL_EVENT_SESSION_ROUTER_H
_ | 5 #ifndef IOS_CHROME_BROWSER_SYNC_SESSIONS_IOS_CHROME_LOCAL_EVENT_SESSION_ROUTER_H
_ |
| 6 #define IOS_CHROME_BROWSER_SYNC_SESSIONS_IOS_CHROME_LOCAL_EVENT_SESSION_ROUTER_H
_ | 6 #define IOS_CHROME_BROWSER_SYNC_SESSIONS_IOS_CHROME_LOCAL_EVENT_SESSION_ROUTER_H
_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <set> | 10 #include <set> |
| 9 | 11 |
| 10 #include "base/callback_list.h" | 12 #include "base/callback_list.h" |
| 11 #include "base/macros.h" | 13 #include "base/macros.h" |
| 12 #include "components/sync_sessions/local_session_event_router.h" | 14 #include "components/sync_sessions/local_session_event_router.h" |
| 13 #include "ios/web/public/web_state/global_web_state_observer.h" | 15 #include "ios/web/public/web_state/global_web_state_observer.h" |
| 14 #include "sync/api/syncable_service.h" | 16 #include "sync/api/syncable_service.h" |
| 15 | 17 |
| 16 class GURL; | 18 class GURL; |
| 17 | 19 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 const GURL&)>::Subscription> | 76 const GURL&)>::Subscription> |
| 75 favicon_changed_subscription_; | 77 favicon_changed_subscription_; |
| 76 | 78 |
| 77 scoped_ptr<base::CallbackList<void(web::WebState*)>::Subscription> | 79 scoped_ptr<base::CallbackList<void(web::WebState*)>::Subscription> |
| 78 tab_parented_subscription_; | 80 tab_parented_subscription_; |
| 79 | 81 |
| 80 DISALLOW_COPY_AND_ASSIGN(IOSChromeLocalSessionEventRouter); | 82 DISALLOW_COPY_AND_ASSIGN(IOSChromeLocalSessionEventRouter); |
| 81 }; | 83 }; |
| 82 | 84 |
| 83 #endif // IOS_CHROME_BROWSER_SYNC_SESSIONS_IOS_CHROME_LOCAL_EVENT_SESSION_ROUTE
R_H_ | 85 #endif // IOS_CHROME_BROWSER_SYNC_SESSIONS_IOS_CHROME_LOCAL_EVENT_SESSION_ROUTE
R_H_ |
| OLD | NEW |