- add sources.
[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 #if defined(OS_WIN) || defined(OS_CHROMEOS)
10
11 // static
12 OpaqueBrowserFrameViewPlatformSpecific*
13 OpaqueBrowserFrameViewPlatformSpecific::Create(
14     OpaqueBrowserFrameView* view,
15     OpaqueBrowserFrameViewLayout* layout) {
16   return 0;
17 }
18
19 #endif