cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / ios / chrome / browser / snapshots / snapshot_overlay.mm
blobd41b8a64e6f2a9a8931391bf7c54750d2c96c82d
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 {
17   self = [super init];
18   if (self) {
19     DCHECK(view);
20     _view.reset([view retain]);
21     _yOffset = yOffset;
22   }
23   return self;
26 - (instancetype)init {
27   NOTREACHED();
28   return nil;
31 - (UIView*)view {
32   return _view;
35 @end