Home | History | Annotate | Download | only in base

Lines Matching defs:BinaryValue

168 class BASE_EXPORT BinaryValue: public Value {
170 // Creates a BinaryValue with a null buffer and size of 0.
171 BinaryValue();
173 // Creates a BinaryValue, taking ownership of the bytes pointed to by
175 BinaryValue(scoped_ptr<char[]> buffer, size_t size);
177 virtual ~BinaryValue();
180 // factory method creates a new BinaryValue by copying the contents of the
182 static BinaryValue* CreateWithCopiedBuffer(const char* buffer, size_t size);
191 virtual BinaryValue* DeepCopy() const OVERRIDE;
198 DISALLOW_COPY_AND_ASSIGN(BinaryValue);
281 bool GetBinary(const std::string& path, const BinaryValue** out_value) const;
282 bool GetBinary(const std::string& path, BinaryValue** out_value);
417 bool GetBinary(size_t index, const BinaryValue** out_value) const;
418 bool GetBinary(size_t index, BinaryValue** out_value);