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

Side by Side Diff: third_party/WebKit/Source/core/dom/ParserContentPolicy.h

Issue 2134043002: Remove unused enum DisallowScriptingContent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698