blob: 4c8d9ac6e0607ca495078016eb7a2f52a546f2b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// 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
|