This source file includes following definitions.
- IsUsingNativeTheme
- Create
#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)
OpaqueBrowserFrameViewPlatformSpecific*
OpaqueBrowserFrameViewPlatformSpecific::Create(
OpaqueBrowserFrameView* view,
OpaqueBrowserFrameViewLayout* layout,
Profile* profile) {
return new OpaqueBrowserFrameViewPlatformSpecific();
}
#endif