Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / views / frame / opaque_browser_frame_view_platform_specific.cc
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 bool OpaqueBrowserFrameViewPlatformSpecific::IsUsingNativeTheme() {
10   return false;
11 }
12
13 #if defined(OS_WIN)
14
15 // static
16 OpaqueBrowserFrameViewPlatformSpecific*
17 OpaqueBrowserFrameViewPlatformSpecific::Create(
18     OpaqueBrowserFrameView* view,
19     OpaqueBrowserFrameViewLayout* layout,
20     Profile* profile) {
21   return new OpaqueBrowserFrameViewPlatformSpecific();
22 }
23
24 #endif