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

Side by Side Diff: Source/core/css/CSSGrammar.y

Issue 424983002: Stop using WebCore namespace in generated code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/core_generated.gyp ('k') | Source/core/css/resolver/MatchResult.h » ('j') | 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 2
3 /* 3 /*
4 * Copyright (C) 2002-2003 Lars Knoll (knoll@kde.org) 4 * Copyright (C) 2002-2003 Lars Knoll (knoll@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 App le Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 App le Inc. All rights reserved.
6 * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) 6 * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
7 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2012 Intel Corporation. All rights reserved. 8 * Copyright (C) 2012 Intel Corporation. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 25 matching lines...) Expand all
36 #include "core/css/CSSSelectorList.h" 36 #include "core/css/CSSSelectorList.h"
37 #include "core/css/MediaList.h" 37 #include "core/css/MediaList.h"
38 #include "core/css/MediaQueryExp.h" 38 #include "core/css/MediaQueryExp.h"
39 #include "core/css/StyleRule.h" 39 #include "core/css/StyleRule.h"
40 #include "core/css/StyleSheetContents.h" 40 #include "core/css/StyleSheetContents.h"
41 #include "core/dom/Document.h" 41 #include "core/dom/Document.h"
42 #include "wtf/FastMalloc.h" 42 #include "wtf/FastMalloc.h"
43 #include <stdlib.h> 43 #include <stdlib.h>
44 #include <string.h> 44 #include <string.h>
45 45
46 using namespace WebCore; 46 using namespace blink;
47 using namespace HTMLNames; 47 using namespace HTMLNames;
48 48
49 #define YYMALLOC fastMalloc 49 #define YYMALLOC fastMalloc
50 #define YYFREE fastFree 50 #define YYFREE fastFree
51 51
52 #define YYENABLE_NLS 0 52 #define YYENABLE_NLS 0
53 #define YYLTYPE_IS_TRIVIAL 1 53 #define YYLTYPE_IS_TRIVIAL 1
54 #define YYMAXDEPTH 10000 54 #define YYMAXDEPTH 10000
55 #define YYDEBUG 0 55 #define YYDEBUG 0
56 56
(...skipping 1766 matching lines...) Expand 10 before | Expand all | Expand 10 after
1823 ; 1823 ;
1824 1824
1825 rule_error_recovery: 1825 rule_error_recovery:
1826 /* empty */ 1826 /* empty */
1827 | rule_error_recovery error 1827 | rule_error_recovery error
1828 | rule_error_recovery invalid_square_brackets_block 1828 | rule_error_recovery invalid_square_brackets_block
1829 | rule_error_recovery invalid_parentheses_block 1829 | rule_error_recovery invalid_parentheses_block
1830 ; 1830 ;
1831 1831
1832 %% 1832 %%
OLDNEW
« no previous file with comments | « Source/core/core_generated.gyp ('k') | Source/core/css/resolver/MatchResult.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698