1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef APPS_SHELL_COMMON_SHELL_APP_RUNTIME_H_
6 #define APPS_SHELL_COMMON_SHELL_APP_RUNTIME_H_
8 #include "base/macros.h"
10 namespace extensions
{
12 // Support for a simplified implementation of the chrome.app.runtime API.
13 class ShellAppRuntime
{
15 // Returns the API name.
16 static const char* GetName();
18 // Returns a simplified schema for the API.
19 static const char* GetSchema();
22 DISALLOW_IMPLICIT_CONSTRUCTORS(ShellAppRuntime
);
25 } // namespace extensions
27 #endif // APPS_SHELL_COMMON_SHELL_APP_RUNTIME_H_