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

Side by Side Diff: extensions/renderer/bindings/api_signature.h

Issue 2947463002: [Extensions Bindings] Add a bindings/ subdirectory under renderer (Closed)
Patch Set: . Created 3 years, 5 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef EXTENSIONS_RENDERER_API_SIGNATURE_H_ 5 #ifndef EXTENSIONS_RENDERER_BINDINGS_API_SIGNATURE_H_
6 #define EXTENSIONS_RENDERER_API_SIGNATURE_H_ 6 #define EXTENSIONS_RENDERER_BINDINGS_API_SIGNATURE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "v8/include/v8.h" 13 #include "v8/include/v8.h"
14 14
15 namespace base { 15 namespace base {
16 class Value; 16 class Value;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 std::vector<std::unique_ptr<ArgumentSpec>> signature_; 70 std::vector<std::unique_ptr<ArgumentSpec>> signature_;
71 71
72 // A developer-readable signature string, lazily set. 72 // A developer-readable signature string, lazily set.
73 mutable std::string expected_signature_; 73 mutable std::string expected_signature_;
74 74
75 DISALLOW_COPY_AND_ASSIGN(APISignature); 75 DISALLOW_COPY_AND_ASSIGN(APISignature);
76 }; 76 };
77 77
78 } // namespace extensions 78 } // namespace extensions
79 79
80 #endif // EXTENSIONS_RENDERER_API_SIGNATURE_H_ 80 #endif // EXTENSIONS_RENDERER_BINDINGS_API_SIGNATURE_H_
OLDNEW
« no previous file with comments | « extensions/renderer/bindings/api_request_handler_unittest.cc ('k') | extensions/renderer/bindings/api_signature.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698