summaryrefslogtreecommitdiff
path: root/chromium/webkit/support/platform_support.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/webkit/support/platform_support.h')
-rw-r--r--chromium/webkit/support/platform_support.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/chromium/webkit/support/platform_support.h b/chromium/webkit/support/platform_support.h
new file mode 100644
index 00000000000..73ab9501a7b
--- /dev/null
+++ b/chromium/webkit/support/platform_support.h
@@ -0,0 +1,22 @@
+// 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.
+
+#ifndef WEBKIT_SUPPORT_PLATFORM_SUPORT_H_
+#define WEBKIT_SUPPORT_PLATFORM_SUPORT_H_
+
+namespace webkit_support {
+// Called before WebKit::initialize().
+void BeforeInitialize();
+
+// Called after WebKit::initialize().
+void AfterInitialize();
+
+// Called before WebKit::shutdown().
+void BeforeShutdown();
+
+// Called after WebKit::shutdown().
+void AfterShutdown();
+} // namespace webkit_support
+
+#endif // WEBKIT_SUPPORT_PLATFORM_SUPORT_H_