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

  /external/chromium_org/chrome/browser/google_apis/
drive_api_parser.cc 118 const char kParentReferenceKind[] = "drive#parentReference";
510 // ParentReference implementation
512 ParentReference::ParentReference() : is_root_(false) {}
514 ParentReference::~ParentReference() {}
517 void ParentReference::RegisterJSONConverter(
518 base::JSONValueConverter<ParentReference>* converter) {
519 converter->RegisterStringField(kId, &ParentReference::file_id_);
521 &ParentReference::parent_link_
    [all...]
drive_api_parser.h 360 // ParentReference represents a directory.
362 class ParentReference {
364 ParentReference();
365 ~ParentReference();
370 base::JSONValueConverter<ParentReference>* converter);
373 static scoped_ptr<ParentReference> CreateFrom(const base::Value& value);
391 friend class base::internal::RepeatedMessageConverter<ParentReference>;
401 DISALLOW_COPY_AND_ASSIGN(ParentReference);
541 const ScopedVector<ParentReference>& parents() const { return parents_; }
603 void set_parents(ScopedVector<ParentReference>* parents)
    [all...]

Completed in 51 milliseconds