Home | History | Annotate | Download | only in parsers
      1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #include "chrome/browser/parsers/metadata_parser_jpeg.h"
      6 
      7 JpegMetadataParser::JpegMetadataParser(const FilePath& path)
      8     : FileMetadataParser(path) {}
      9 
     10 bool JpegMetadataParser::Parse() {
     11   FileMetadataParser::Parse();
     12   properties_[MetadataParser::kPropertyType] = "jpeg";
     13   return true;
     14 }
     15