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

Unified Diff: blimp/helium/serializable.h

Issue 2602103002: Delete blimp/helium and remove references to it from dependent targets (Closed)
Patch Set: . Created 4 years 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
« no previous file with comments | « blimp/helium/revision_generator_unittest.cc ('k') | blimp/helium/serializable_struct.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/helium/serializable.h
diff --git a/blimp/helium/serializable.h b/blimp/helium/serializable.h
deleted file mode 100644
index cc03d826911010a2a3011e1b56b3941f352b3e42..0000000000000000000000000000000000000000
--- a/blimp/helium/serializable.h
+++ /dev/null
@@ -1,32 +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 BLIMP_HELIUM_SERIALIZABLE_H_
-#define BLIMP_HELIUM_SERIALIZABLE_H_
-
-namespace google {
-namespace protobuf {
-namespace io {
-class CodedInputStream;
-class CodedOutputStream;
-} // namespace io
-} // namespace protobuf
-} // namespace google
-
-namespace blimp {
-namespace helium {
-
-// Defines methods needed to serialize and deserialize |this| from a byte
-// stream.
-class Serializable {
- public:
- virtual void Serialize(
- google::protobuf::io::CodedOutputStream* output_stream) const = 0;
- virtual bool Parse(google::protobuf::io::CodedInputStream* input_stream) = 0;
-};
-
-} // namespace helium
-} // namespace blimp
-
-#endif // BLIMP_HELIUM_SERIALIZABLE_H_
« no previous file with comments | « blimp/helium/revision_generator_unittest.cc ('k') | blimp/helium/serializable_struct.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698