| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_HANDOFF_HANDOFF_MANAGER_H_ | 5 #ifndef COMPONENTS_HANDOFF_HANDOFF_MANAGER_H_ |
| 6 #define COMPONENTS_HANDOFF_HANDOFF_MANAGER_H_ | 6 #define COMPONENTS_HANDOFF_HANDOFF_MANAGER_H_ |
| 7 | 7 |
| 8 #include <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "components/handoff/handoff_utility.h" | 11 #include "components/handoff/handoff_utility.h" |
| 12 #include "url/gurl.h" | 12 #include "url/gurl.h" |
| 13 | 13 |
| 14 @class NSUserActivity; | 14 @class NSUserActivity; |
| 15 | 15 |
| 16 #if defined(OS_IOS) | 16 #if defined(OS_IOS) |
| 17 namespace user_prefs { | 17 namespace user_prefs { |
| 18 class PrefRegistrySyncable; | 18 class PrefRegistrySyncable; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 33 // method is idempotent. | 33 // method is idempotent. |
| 34 - (void)updateActiveURL:(const GURL&)url; | 34 - (void)updateActiveURL:(const GURL&)url; |
| 35 | 35 |
| 36 @end | 36 @end |
| 37 | 37 |
| 38 @interface HandoffManager (TestingOnly) | 38 @interface HandoffManager (TestingOnly) |
| 39 - (NSURL*)userActivityWebpageURL; | 39 - (NSURL*)userActivityWebpageURL; |
| 40 @end | 40 @end |
| 41 | 41 |
| 42 #endif // COMPONENTS_HANDOFF_HANDOFF_MANAGER_H_ | 42 #endif // COMPONENTS_HANDOFF_HANDOFF_MANAGER_H_ |
| OLD | NEW |