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

Side by Side Diff: Source/core/dom/ViewportArguments.cpp

Issue 17480002: Remove unused includes from core/accessibility, core/css and core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased ; update <wtf/Foo.h> to "wtf/Foo.h" in changed files Created 7 years, 6 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 | « Source/core/dom/UserActionElementSet.h ('k') | Source/core/dom/VisitedLinkState.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 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed.
7 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2012 Intel Corporation. All rights reserved. 9 * Copyright (C) 2012 Intel Corporation. All rights reserved.
10 * 10 *
(...skipping 11 matching lines...) Expand all
22 * along with this library; see the file COPYING.LIB. If not, write to 22 * along with this library; see the file COPYING.LIB. If not, write to
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 * Boston, MA 02110-1301, USA. 24 * Boston, MA 02110-1301, USA.
25 * 25 *
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 #include "core/dom/ViewportArguments.h" 29 #include "core/dom/ViewportArguments.h"
30 30
31 #include "core/dom/Document.h" 31 #include "core/dom/Document.h"
32 #include "core/platform/graphics/IntSize.h" 32 #include "wtf/text/WTFString.h"
33 #include <wtf/text/WTFString.h>
34 33
35 using namespace std; 34 using namespace std;
36 35
37 namespace WebCore { 36 namespace WebCore {
38 37
39 static const float& compareIgnoringAuto(const float& value1, const float& value2 , const float& (*compare) (const float&, const float&)) 38 static const float& compareIgnoringAuto(const float& value1, const float& value2 , const float& (*compare) (const float&, const float&))
40 { 39 {
41 ASSERT(value1 != ViewportArguments::ValueAuto || value2 != ViewportArguments ::ValueAuto); 40 ASSERT(value1 != ViewportArguments::ValueAuto || value2 != ViewportArguments ::ValueAuto);
42 41
43 if (value1 == ViewportArguments::ValueAuto) 42 if (value1 == ViewportArguments::ValueAuto)
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 message.replace("%replacement2", replacement2); 397 message.replace("%replacement2", replacement2);
399 398
400 if ((errorCode == UnrecognizedViewportArgumentValueError || errorCode == Tru ncatedViewportArgumentValueError) && replacement1.find(';') != WTF::notFound) 399 if ((errorCode == UnrecognizedViewportArgumentValueError || errorCode == Tru ncatedViewportArgumentValueError) && replacement1.find(';') != WTF::notFound)
401 message.append(" Note that ';' is not a separator in viewport values. Th e list should be comma-separated."); 400 message.append(" Note that ';' is not a separator in viewport values. Th e list should be comma-separated.");
402 401
403 // FIXME: This message should be moved off the console once a solution to ht tps://bugs.webkit.org/show_bug.cgi?id=103274 exists. 402 // FIXME: This message should be moved off the console once a solution to ht tps://bugs.webkit.org/show_bug.cgi?id=103274 exists.
404 document->addConsoleMessage(RenderingMessageSource, viewportErrorMessageLeve l(errorCode), message); 403 document->addConsoleMessage(RenderingMessageSource, viewportErrorMessageLeve l(errorCode), message);
405 } 404 }
406 405
407 } // namespace WebCore 406 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/UserActionElementSet.h ('k') | Source/core/dom/VisitedLinkState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698