blob: b18e66b5e31fe6cbfe5ec5165e193818ab39672d [file] [log] [blame]
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_PARSERS_METADATA_PARSER_JPEG_H_
#define CHROME_BROWSER_PARSERS_METADATA_PARSER_JPEG_H_
#pragma once
#include "chrome/browser/parsers/metadata_parser_filebase.h"
class JpegMetadataParser : public FileMetadataParser {
public:
explicit JpegMetadataParser(const FilePath& path);
// Implementation of MetadataParser
virtual bool Parse() OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(JpegMetadataParser);
};
#endif // CHROME_BROWSER_PARSERS_METADATA_PARSER_JPEG_H_