Index: content/public/common/content_restriction.h |
=================================================================== |
--- content/public/common/content_restriction.h (revision 107906) |
+++ content/public/common/content_restriction.h (working copy) |
@@ -2,10 +2,12 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef CONTENT_COMMON_CONTENT_RESTRICTION_H_ |
-#define CONTENT_COMMON_CONTENT_RESTRICTION_H_ |
+#ifndef CONTENT_PUBLIC_COMMON_CONTENT_RESTRICTION_H_ |
+#define CONTENT_PUBLIC_COMMON_CONTENT_RESTRICTION_H_ |
#pragma once |
+namespace content { |
+ |
// Used by a full-page plugin to disable browser commands because of |
// restrictions on how the data is to be used (i.e. can't copy/print). |
enum ContentRestriction { |
@@ -16,4 +18,6 @@ |
CONTENT_RESTRICTION_SAVE = 1 << 4 |
}; |
-#endif // CONTENT_COMMON_CONTENT_RESTRICTION_H_ |
+} // namespace content |
+ |
+#endif // CONTENT_PUBLIC_COMMON_CONTENT_RESTRICTION_H_ |