Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1633)

Unified Diff: content/child/image_decoder.h

Issue 2759103002: Add include guards to header files in content missing them (Closed)
Patch Set: Better name for include guards Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/renderer/pepper/pepper_in_process_router.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/image_decoder.h
diff --git a/content/child/image_decoder.h b/content/child/image_decoder.h
index fb6cfd37b3d5431a9c7c9f231bd6ca71be8e1a55..ca4254deb42d8153e26e4d83664c9e3d3776bfa6 100644
--- a/content/child/image_decoder.h
+++ b/content/child/image_decoder.h
@@ -2,6 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#ifndef CONTENT_CHILD_IMAGE_DECODER_H_
+#define CONTENT_CHILD_IMAGE_DECODER_H_
+
#include <stddef.h>
#include <vector>
@@ -44,3 +47,5 @@ class ImageDecoder {
};
} // namespace content
+
+#endif // CONTENT_CHILD_IMAGE_DECODER_H_
« no previous file with comments | « no previous file | content/renderer/pepper/pepper_in_process_router.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698