OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #import "chrome/browser/cocoa/view_id_util.h" |
| 6 |
| 7 #import <Cocoa/Cocoa.h> |
| 8 #include "base/logging.h" |
| 9 |
| 10 namespace view_id_util { |
| 11 |
| 12 NSView* GetView(NSWindow* window, ViewID viewID) { |
| 13 DCHECK(window); |
| 14 return [[[window contentView] superview] viewWithTag:ViewIDToTag(viewID)]; |
| 15 } |
| 16 |
| 17 } // namespace view_id_util |
OLD | NEW |