Lines Matching refs:BinaryValue
172 class BASE_EXPORT BinaryValue: public Value {
174 // Creates a BinaryValue with a null buffer and size of 0.
175 BinaryValue();
177 // Creates a BinaryValue, taking ownership of the bytes pointed to by
179 BinaryValue(scoped_ptr<char[]> buffer, size_t size);
181 virtual ~BinaryValue();
184 // factory method creates a new BinaryValue by copying the contents of the
186 static BinaryValue* CreateWithCopiedBuffer(const char* buffer, size_t size);
195 virtual BinaryValue* DeepCopy() const OVERRIDE;
202 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);
413 bool GetBinary(size_t index, const BinaryValue** out_value) const;
414 bool GetBinary(size_t index, BinaryValue** out_value);