// Copyright (c) 2010 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 "webkit/support/platform_support.h" namespace webkit_support { // TODO(tkent): Implement some of the followings for platform-dependent tasks // such as loading resource. void BeforeInitialize() { } void AfterIniitalize() { } void BeforeShutdown() { } void AfterShutdown() { } } // namespace webkit_support