opaque_browser_frame_view_platform_specific.cc revision cedac228d2dd51db4b79ea1e72c7f249408ee061
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
9bool OpaqueBrowserFrameViewPlatformSpecific::IsUsingSystemTheme() {
10  return false;
11}
12
13#if defined(OS_WIN)
14
15// static
16OpaqueBrowserFrameViewPlatformSpecific*
17OpaqueBrowserFrameViewPlatformSpecific::Create(
18    OpaqueBrowserFrameView* view,
19    OpaqueBrowserFrameViewLayout* layout,
20    Profile* profile) {
21  return new OpaqueBrowserFrameViewPlatformSpecific();
22}
23
24#endif
25