Index: chrome/browser/sync/protocol/Debug/obj/global_intermediate/protoc_out/chrome/browser/sync/protocol/encryption.pb.h |
diff --git a/chrome/browser/sync/protocol/Debug/obj/global_intermediate/protoc_out/chrome/browser/sync/protocol/encryption.pb.h b/chrome/browser/sync/protocol/Debug/obj/global_intermediate/protoc_out/chrome/browser/sync/protocol/encryption.pb.h |
new file mode 100755 |
index 0000000000000000000000000000000000000000..854432e90008e5b0a0c24304b822ad2a1cb7a0ad |
--- /dev/null |
+++ b/chrome/browser/sync/protocol/Debug/obj/global_intermediate/protoc_out/chrome/browser/sync/protocol/encryption.pb.h |
@@ -0,0 +1,237 @@ |
+// Generated by the protocol buffer compiler. DO NOT EDIT! |
+// source: encryption.proto |
+ |
+#ifndef PROTOBUF_encryption_2eproto__INCLUDED |
+#define PROTOBUF_encryption_2eproto__INCLUDED |
+ |
+#include <string> |
+ |
+#include <google/protobuf/stubs/common.h> |
+ |
+#if GOOGLE_PROTOBUF_VERSION < 2003000 |
+#error This file was generated by a newer version of protoc which is |
+#error incompatible with your Protocol Buffer headers. Please update |
+#error your headers. |
+#endif |
+#if 2003001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION |
+#error This file was generated by an older version of protoc which is |
+#error incompatible with your Protocol Buffer headers. Please |
+#error regenerate this file with a newer version of protoc. |
+#endif |
+ |
+#include <google/protobuf/generated_message_util.h> |
+#include <google/protobuf/repeated_field.h> |
+#include <google/protobuf/extension_set.h> |
+#include <google/protobuf/unknown_field_set.h> |
+// @@protoc_insertion_point(includes) |
+ |
+namespace sync_pb { |
+ |
+// Internal implementation detail -- do not call these. |
+void protobuf_AddDesc_encryption_2eproto(); |
+void protobuf_AssignDesc_encryption_2eproto(); |
+void protobuf_ShutdownFile_encryption_2eproto(); |
+ |
+class EncryptedData; |
+ |
+// =================================================================== |
+ |
+class EncryptedData : public ::google::protobuf::MessageLite { |
+ public: |
+ EncryptedData(); |
+ virtual ~EncryptedData(); |
+ |
+ EncryptedData(const EncryptedData& from); |
+ |
+ inline EncryptedData& operator=(const EncryptedData& from) { |
+ CopyFrom(from); |
+ return *this; |
+ } |
+ |
+ inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { |
+ return _unknown_fields_; |
+ } |
+ |
+ inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { |
+ return &_unknown_fields_; |
+ } |
+ |
+ static const EncryptedData& default_instance(); |
+ |
+ void Swap(EncryptedData* other); |
+ |
+ // implements Message ---------------------------------------------- |
+ |
+ EncryptedData* New() const; |
+ void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from); |
+ void CopyFrom(const EncryptedData& from); |
+ void MergeFrom(const EncryptedData& from); |
+ void Clear(); |
+ bool IsInitialized() const; |
+ |
+ int ByteSize() const; |
+ bool MergePartialFromCodedStream( |
+ ::google::protobuf::io::CodedInputStream* input); |
+ void SerializeWithCachedSizes( |
+ ::google::protobuf::io::CodedOutputStream* output) const; |
+ int GetCachedSize() const { return _cached_size_; } |
+ private: |
+ void SharedCtor(); |
+ void SharedDtor(); |
+ void SetCachedSize(int size) const; |
+ public: |
+ |
+ ::std::string GetTypeName() const; |
+ |
+ // nested types ---------------------------------------------------- |
+ |
+ // accessors ------------------------------------------------------- |
+ |
+ // optional string key_name = 1; |
+ inline bool has_key_name() const; |
+ inline void clear_key_name(); |
+ static const int kKeyNameFieldNumber = 1; |
+ inline const ::std::string& key_name() const; |
+ inline void set_key_name(const ::std::string& value); |
+ inline void set_key_name(const char* value); |
+ inline void set_key_name(const char* value, size_t size); |
+ inline ::std::string* mutable_key_name(); |
+ |
+ // optional string blob = 2; |
+ inline bool has_blob() const; |
+ inline void clear_blob(); |
+ static const int kBlobFieldNumber = 2; |
+ inline const ::std::string& blob() const; |
+ inline void set_blob(const ::std::string& value); |
+ inline void set_blob(const char* value); |
+ inline void set_blob(const char* value, size_t size); |
+ inline ::std::string* mutable_blob(); |
+ |
+ // @@protoc_insertion_point(class_scope:sync_pb.EncryptedData) |
+ private: |
+ ::google::protobuf::UnknownFieldSet _unknown_fields_; |
+ mutable int _cached_size_; |
+ |
+ ::std::string* key_name_; |
+ static const ::std::string _default_key_name_; |
+ ::std::string* blob_; |
+ static const ::std::string _default_blob_; |
+ friend void protobuf_AddDesc_encryption_2eproto(); |
+ friend void protobuf_AssignDesc_encryption_2eproto(); |
+ friend void protobuf_ShutdownFile_encryption_2eproto(); |
+ |
+ ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32]; |
+ |
+ // WHY DOES & HAVE LOWER PRECEDENCE THAN != !? |
+ inline bool _has_bit(int index) const { |
+ return (_has_bits_[index / 32] & (1u << (index % 32))) != 0; |
+ } |
+ inline void _set_bit(int index) { |
+ _has_bits_[index / 32] |= (1u << (index % 32)); |
+ } |
+ inline void _clear_bit(int index) { |
+ _has_bits_[index / 32] &= ~(1u << (index % 32)); |
+ } |
+ |
+ void InitAsDefaultInstance(); |
+ static EncryptedData* default_instance_; |
+}; |
+// =================================================================== |
+ |
+ |
+// =================================================================== |
+ |
+// EncryptedData |
+ |
+// optional string key_name = 1; |
+inline bool EncryptedData::has_key_name() const { |
+ return _has_bit(0); |
+} |
+inline void EncryptedData::clear_key_name() { |
+ if (key_name_ != &_default_key_name_) { |
+ key_name_->clear(); |
+ } |
+ _clear_bit(0); |
+} |
+inline const ::std::string& EncryptedData::key_name() const { |
+ return *key_name_; |
+} |
+inline void EncryptedData::set_key_name(const ::std::string& value) { |
+ _set_bit(0); |
+ if (key_name_ == &_default_key_name_) { |
+ key_name_ = new ::std::string; |
+ } |
+ key_name_->assign(value); |
+} |
+inline void EncryptedData::set_key_name(const char* value) { |
+ _set_bit(0); |
+ if (key_name_ == &_default_key_name_) { |
+ key_name_ = new ::std::string; |
+ } |
+ key_name_->assign(value); |
+} |
+inline void EncryptedData::set_key_name(const char* value, size_t size) { |
+ _set_bit(0); |
+ if (key_name_ == &_default_key_name_) { |
+ key_name_ = new ::std::string; |
+ } |
+ key_name_->assign(reinterpret_cast<const char*>(value), size); |
+} |
+inline ::std::string* EncryptedData::mutable_key_name() { |
+ _set_bit(0); |
+ if (key_name_ == &_default_key_name_) { |
+ key_name_ = new ::std::string; |
+ } |
+ return key_name_; |
+} |
+ |
+// optional string blob = 2; |
+inline bool EncryptedData::has_blob() const { |
+ return _has_bit(1); |
+} |
+inline void EncryptedData::clear_blob() { |
+ if (blob_ != &_default_blob_) { |
+ blob_->clear(); |
+ } |
+ _clear_bit(1); |
+} |
+inline const ::std::string& EncryptedData::blob() const { |
+ return *blob_; |
+} |
+inline void EncryptedData::set_blob(const ::std::string& value) { |
+ _set_bit(1); |
+ if (blob_ == &_default_blob_) { |
+ blob_ = new ::std::string; |
+ } |
+ blob_->assign(value); |
+} |
+inline void EncryptedData::set_blob(const char* value) { |
+ _set_bit(1); |
+ if (blob_ == &_default_blob_) { |
+ blob_ = new ::std::string; |
+ } |
+ blob_->assign(value); |
+} |
+inline void EncryptedData::set_blob(const char* value, size_t size) { |
+ _set_bit(1); |
+ if (blob_ == &_default_blob_) { |
+ blob_ = new ::std::string; |
+ } |
+ blob_->assign(reinterpret_cast<const char*>(value), size); |
+} |
+inline ::std::string* EncryptedData::mutable_blob() { |
+ _set_bit(1); |
+ if (blob_ == &_default_blob_) { |
+ blob_ = new ::std::string; |
+ } |
+ return blob_; |
+} |
+ |
+ |
+// @@protoc_insertion_point(namespace_scope) |
+ |
+} // namespace sync_pb |
+ |
+// @@protoc_insertion_point(global_scope) |
+ |
+#endif // PROTOBUF_encryption_2eproto__INCLUDED |