| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef ParserContentPolicy_h | 26 #ifndef ParserContentPolicy_h |
| 27 #define ParserContentPolicy_h | 27 #define ParserContentPolicy_h |
| 28 | 28 |
| 29 namespace blink { | 29 namespace blink { |
| 30 | 30 |
| 31 enum ParserContentPolicy { | 31 enum ParserContentPolicy { |
| 32 DisallowScriptingAndPluginContent, | 32 DisallowScriptingAndPluginContent, |
| 33 DisallowScriptingContent, | |
| 34 AllowScriptingContent, | 33 AllowScriptingContent, |
| 35 AllowScriptingContentAndDoNotMarkAlreadyStarted, | 34 AllowScriptingContentAndDoNotMarkAlreadyStarted, |
| 36 }; | 35 }; |
| 37 | 36 |
| 38 static inline bool scriptingContentIsAllowed(ParserContentPolicy parserContentPo
licy) | 37 static inline bool scriptingContentIsAllowed(ParserContentPolicy parserContentPo
licy) |
| 39 { | 38 { |
| 40 return parserContentPolicy == AllowScriptingContent || parserContentPolicy =
= AllowScriptingContentAndDoNotMarkAlreadyStarted; | 39 return parserContentPolicy == AllowScriptingContent || parserContentPolicy =
= AllowScriptingContentAndDoNotMarkAlreadyStarted; |
| 41 } | 40 } |
| 42 | 41 |
| 43 static inline bool pluginContentIsAllowed(ParserContentPolicy parserContentPolic
y) | 42 static inline bool pluginContentIsAllowed(ParserContentPolicy parserContentPolic
y) |
| 44 { | 43 { |
| 45 return parserContentPolicy != DisallowScriptingAndPluginContent; | 44 return parserContentPolicy != DisallowScriptingAndPluginContent; |
| 46 } | 45 } |
| 47 | 46 |
| 48 } // namespace blink | 47 } // namespace blink |
| 49 | 48 |
| 50 #endif // ParserContentPolicy_h | 49 #endif // ParserContentPolicy_h |
| OLD | NEW |