Fix build.
[chromium-blink-merge.git] / components / handoff / handoff_utility.mm
blob50011dc7a11ee7294c51f11e431870553dfd9270
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"
7 namespace handoff {
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])
15     return ORIGIN_IOS;
17   if ([string isEqualToString:kOriginMac])
18     return ORIGIN_MAC;
20   return ORIGIN_UNKNOWN;
23 }  // namespace handoff