webm_parser: Use ./ prefix for includes

Fixes a lint presubmit check.

Change-Id: If06a7b11c18742dfe659136736082945a4853b3e
This commit is contained in:
Michael Bradshaw
2016-09-08 15:42:22 -07:00
parent da62f659e4
commit 78f2c5ab78
8 changed files with 16 additions and 16 deletions

View File

@@ -13,8 +13,8 @@
#include <initializer_list>
#include <vector>
#include "reader.h"
#include "status.h"
#include "./reader.h"
#include "./status.h"
/**
\file

View File

@@ -10,9 +10,9 @@
#include <cstdint>
#include "dom_types.h"
#include "reader.h"
#include "status.h"
#include "./dom_types.h"
#include "./reader.h"
#include "./status.h"
/**
\file

View File

@@ -12,8 +12,8 @@
#include <string>
#include <vector>
#include "element.h"
#include "id.h"
#include "./element.h"
#include "./id.h"
/**
\file

View File

@@ -12,7 +12,7 @@
#include <limits>
#include <utility>
#include "id.h"
#include "./id.h"
/**
\file

View File

@@ -13,8 +13,8 @@
#include <cstdlib>
#include <memory>
#include "reader.h"
#include "status.h"
#include "./reader.h"
#include "./status.h"
/**
\file

View File

@@ -14,8 +14,8 @@
#include <memory>
#include <type_traits>
#include "reader.h"
#include "status.h"
#include "./reader.h"
#include "./status.h"
/**
\file

View File

@@ -11,7 +11,7 @@
#include <cstddef>
#include <cstdint>
#include "status.h"
#include "./status.h"
/**
\file

View File

@@ -10,9 +10,9 @@
#include <memory>
#include "callback.h"
#include "reader.h"
#include "status.h"
#include "./callback.h"
#include "./reader.h"
#include "./status.h"
/**
\file