OLD | NEW |
(Empty) | |
| 1 // Copyright (c) $year 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. |
| 4 |
| 5 // This file is generated. Don't edit it. |
| 6 |
| 7 \#ifndef $guard |
| 8 \#define $guard |
| 9 \#pragma once |
| 10 |
| 11 \#include "chrome/browser/extensions/api/api_function.h" |
| 12 |
| 13 \#include <string> |
| 14 |
| 15 namespace extensions { |
| 16 |
| 17 #for $family in $families |
| 18 // TODO(you): implement concrete subclass in this location: |
| 19 // ${family.header_path} |
| 20 #for $f in $family.functions |
| 21 class Async${f.class_name}Function : public AsyncIOAPIFunction { |
| 22 public: |
| 23 Async${f.class_name}Function() {} |
| 24 // TODO(you): your subclass must contain this line: |
| 25 // DECLARE_EXTENSION_FUNCTION_NAME("$f.dotted_name") |
| 26 }; |
| 27 |
| 28 #end for |
| 29 #end for |
| 30 |
| 31 } // namespace extensions |
| 32 |
| 33 \#endif // $guard |
OLD | NEW |