HomeSort by relevance Sort by last modified time
    Searched defs:ParentReference (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/google_apis/drive/
drive_api_parser.cc 117 const char kParentReferenceKind[] = "drive#parentReference";
387 // ParentReference implementation
389 ParentReference::ParentReference() : is_root_(false) {}
391 ParentReference::~ParentReference() {}
394 void ParentReference::RegisterJSONConverter(
395 base::JSONValueConverter<ParentReference>* converter) {
396 converter->RegisterStringField(kId, &ParentReference::file_id_);
398 &ParentReference::parent_link_
    [all...]
drive_api_parser.h 327 // ParentReference represents a directory.
329 class ParentReference {
331 ParentReference();
332 ~ParentReference();
337 base::JSONValueConverter<ParentReference>* converter);
340 static scoped_ptr<ParentReference> CreateFrom(const base::Value& value);
358 friend class base::internal::RepeatedMessageConverter<ParentReference>;
368 DISALLOW_COPY_AND_ASSIGN(ParentReference);
552 const ScopedVector<ParentReference>& parents() const { return parents_; }
623 void set_parents(ScopedVector<ParentReference> parents)
    [all...]

Completed in 880 milliseconds