1 // Copyright 2013 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 #import "ios/chrome/browser/snapshots/snapshot_overlay.h"
7 #include "base/logging.h"
8 #import "base/mac/scoped_nsobject.h"
10 @implementation SnapshotOverlay {
11 base::scoped_nsobject<UIView> _view;
14 @synthesize yOffset = _yOffset;
16 - (instancetype)initWithView:(UIView*)view yOffset:(CGFloat)yOffset {
20 _view.reset([view retain]);
26 - (instancetype)init {