opaque_browser_frame_view_platform_specific.cc revision a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7
1// Copyright (c) 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.
4
5#include "chrome/browser/ui/views/frame/opaque_browser_frame_view_platform_specific.h"
6
7#include "build/build_config.h"
8
9#if defined(OS_WIN) || defined(OS_CHROMEOS)
10
11// static
12OpaqueBrowserFrameViewPlatformSpecific*
13OpaqueBrowserFrameViewPlatformSpecific::Create(
14    OpaqueBrowserFrameView* view,
15    OpaqueBrowserFrameViewLayout* layout) {
16  return 0;
17}
18
19#endif
20
21bool OpaqueBrowserFrameViewPlatformSpecific::ShouldShowCaptionButtons() const {
22  return true;
23}
24