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

Unified Diff: mojo/public/interfaces/bindings/tests/validation_parser/validation_parser.h

Issue 2250183003: Make the fuchsia mojo/public repo the source of truth. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: mojo/public/interfaces/bindings/tests/validation_parser/validation_parser.h
diff --git a/mojo/public/interfaces/bindings/tests/validation_parser/validation_parser.h b/mojo/public/interfaces/bindings/tests/validation_parser/validation_parser.h
deleted file mode 100644
index 570a1f32997465633713dcb41daebd80927a98a2..0000000000000000000000000000000000000000
--- a/mojo/public/interfaces/bindings/tests/validation_parser/validation_parser.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MOJO_VALIDATION_PARSER_H_
-#define MOJO_VALIDATION_PARSER_H_
-
-#include <stdint.h>
-#include <string.h>
-
-// Parses a validation test read in as a bunch of characters.
-//
-// On success, returns a null pointer and a allocates a buffer pointed to
-// by *data that must be freed by the caller. *data_len contains the buffer's
-// size. *num_handles contains the number of handles found by the parser.
-//
-// On failure, returns a buffer containing an error message which must be freed
-// by the caller, null in *data, and 0 in *data_len. *num_handles contains 0.
-extern "C" __attribute__((visibility("default"))) char* ParseValidationTest(
- const char* input, // Input
- size_t* num_handles, // Output
- uint8_t** data, // Output
- size_t* data_len); // Output
-
-#endif // MOJO_VALIDATION_PARSER_H__

Powered by Google App Engine
This is Rietveld 408576698