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
3 // found in the LICENSE file.
5 #include "components/handoff/handoff_utility.h"
9 NSString* const kOriginKey = @"kOriginKey";
10 NSString* const kOriginiOS = @"kOriginiOS";
11 NSString* const kOriginMac = @"kOriginMac";
13 Origin OriginFromString(NSString* string) {
14 if ([string isEqualToString:kOriginiOS])
17 if ([string isEqualToString:kOriginMac])
20 return ORIGIN_UNKNOWN;
23 } // namespace handoff