diff options
Diffstat (limited to 'content/shell/shell_mac.mm')
-rw-r--r-- | content/shell/shell_mac.mm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/content/shell/shell_mac.mm b/content/shell/shell_mac.mm index f3f4ba8..bbb993f 100644 --- a/content/shell/shell_mac.mm +++ b/content/shell/shell_mac.mm @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -179,6 +179,10 @@ void Shell::PlatformCreateWindow(int width, int height) { [window_ makeKeyAndOrderFront:nil]; } +void Shell::PlatformSetContents() { + // TODO(erg): I don't know what goes here. +} + void Shell::PlatformSizeTo(int width, int height) { NSRect frame = [window_ frame]; frame.size = NSMakeSize(width, height); |