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

Side by Side Diff: chrome/browser/ui/cocoa/tab_contents/previewable_contents_controller.mm

Issue 6358008: [Mac] Organize some files into chrome/browser/ui/cocoa/tab_contents/.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "chrome/browser/ui/cocoa/previewable_contents_controller.h" 5 #import "chrome/browser/ui/cocoa/tab_contents/previewable_contents_controller.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/mac/mac_util.h" 8 #include "base/mac/mac_util.h"
9 #include "chrome/browser/tab_contents/tab_contents.h" 9 #include "chrome/browser/tab_contents/tab_contents.h"
10 10
11 @implementation PreviewableContentsController 11 @implementation PreviewableContentsController
12 12
13 @synthesize activeContainer = activeContainer_; 13 @synthesize activeContainer = activeContainer_;
14 14
15 - (id)init { 15 - (id)init {
(...skipping 27 matching lines...) Expand all
43 [activeContainer_ setHidden:NO]; 43 [activeContainer_ setHidden:NO];
44 44
45 previewContents_ = nil; 45 previewContents_ = nil;
46 } 46 }
47 47
48 - (BOOL)isShowingPreview { 48 - (BOOL)isShowingPreview {
49 return previewContents_ != nil; 49 return previewContents_ != nil;
50 } 50 }
51 51
52 @end 52 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698