Added unit test for DevTools' ephemeral port support.
[chromium-blink-merge.git] / apps / shell / common / shell_app_runtime.h
blob40653c7786c83ce9f47a42d065fb15dd1b9f4734
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 {
14 public:
15 // Returns the API name.
16 static const char* GetName();
18 // Returns a simplified schema for the API.
19 static const char* GetSchema();
21 private:
22 DISALLOW_IMPLICIT_CONSTRUCTORS(ShellAppRuntime);
25 } // namespace extensions
27 #endif // APPS_SHELL_COMMON_SHELL_APP_RUNTIME_H_