Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: ios/chrome/browser/sessions/NSCoder+Compatibility.mm

Issue 2585233003: Upstream Chrome on iOS source code [2/11]. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/chrome/browser/sessions/NSCoder+Compatibility.h ('k') | ios/chrome/browser/sessions/session_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/sessions/NSCoder+Compatibility.mm
diff --git a/ios/chrome/browser/sessions/NSCoder+Compatibility.mm b/ios/chrome/browser/sessions/NSCoder+Compatibility.mm
new file mode 100644
index 0000000000000000000000000000000000000000..4308759f57a0ed371cb7387e73157eab0500648a
--- /dev/null
+++ b/ios/chrome/browser/sessions/NSCoder+Compatibility.mm
@@ -0,0 +1,33 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import "ios/chrome/browser/sessions/NSCoder+Compatibility.h"
+
+#include "base/logging.h"
+
+namespace {
+// Note: |NSNotFound| is equal to |NSIntegerMax| in 32-bit and 64-bit that
+// in turn is initialized to |LONG_MAX|. On a 32-bit build, |INT_MAX| and
+// |LONG_MAX| have the same value, however, in a 64-bit build, |LONG_MAX|
+// is much larger, so we define |NSNotFound32| to |INT_MAX| that has the
+// same value in both 32-bit and 64-bit builds.
+enum { NSNotFound32 = INT_MAX };
+} // namespace
+
+@implementation NSCoder (Compatibility)
+
+- (NSInteger)cr_decodeIndexForKey:(NSString*)key {
+ int32_t index32 = [self decodeInt32ForKey:key];
+ DCHECK(0 <= index32 && index32 <= NSNotFound32);
+ return index32 == NSNotFound32 ? NSNotFound : static_cast<NSInteger>(index32);
+}
+
+- (void)cr_encodeIndex:(NSInteger)index forKey:(NSString*)key {
+ DCHECK((0 <= index && index < NSNotFound32) || index == NSNotFound);
+ int32_t index32 = index == NSNotFound ? static_cast<int32_t>(NSNotFound32)
+ : static_cast<int32_t>(index);
+ [self encodeInt32:index32 forKey:key];
+}
+
+@end
« no previous file with comments | « ios/chrome/browser/sessions/NSCoder+Compatibility.h ('k') | ios/chrome/browser/sessions/session_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698