Chromium Code Reviews| Index: content/browser/browser_startup_configuration.h |
| diff --git a/content/browser/browser_startup_configuration.h b/content/browser/browser_startup_configuration.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d023a73cc16d3e24020b0f2fe51712bd00b64806 |
| --- /dev/null |
| +++ b/content/browser/browser_startup_configuration.h |
| @@ -0,0 +1,24 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
|
jam
2013/07/31 18:07:52
i should have been clearer: i had meant that you d
aberent
2013/07/31 20:56:51
Done as discussed on IM.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_BROWSER_BROWSER_STARTUP_CONFIGURATION_H_ |
| +#define CONTENT_BROWSER_BROWSER_STARTUP_CONFIGURATION_H_ |
| + |
| +#include "build/build_config.h" |
| + |
| +#if defined(OS_ANDROID) |
| +#include <jni.h> |
| +#endif |
| + |
| +namespace content { |
| + |
| +bool BrowserMayStartAsynchronously(); |
| +void BrowserStartupComplete(int result); |
| + |
| +#if defined(OS_ANDROID) |
| +bool RegisterBrowserStartupConfiguration(JNIEnv* env); |
| +#endif |
| + |
| +} // namespace content |
| +#endif // CONTENT_BROWSER_BROWSER_STARTUP_CONFIGURATION_H_ |