Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Side by Side Diff: chrome/browser/extensions/api/generated_base_classes.h.tmpl

Issue 9359040: WIP IDL-IPC2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Checkpoint before going back to returning ListValue via ExtensionMsg_Response. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/generated_api_functions.h.tmpl ('k') | chrome/browser/extensions/api/socket/socket_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698