root/chrome/browser/ui/views/frame/opaque_browser_frame_view_platform_specific.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. IsUsingNativeTheme
  2. Create

// Copyright (c) 2013 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.

#include "chrome/browser/ui/views/frame/opaque_browser_frame_view_platform_specific.h"

#include "build/build_config.h"

bool OpaqueBrowserFrameViewPlatformSpecific::IsUsingNativeTheme() {
  return false;
}

#if defined(OS_WIN)

// static
OpaqueBrowserFrameViewPlatformSpecific*
OpaqueBrowserFrameViewPlatformSpecific::Create(
    OpaqueBrowserFrameView* view,
    OpaqueBrowserFrameViewLayout* layout,
    Profile* profile) {
  return new OpaqueBrowserFrameViewPlatformSpecific();
}

#endif

/* [<][>][^][v][top][bottom][index][help] */