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

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

Issue 22908011: Change viewport error messages in preparation for use with @viewport rule (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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/dom/Document.cpp ('k') | Source/core/dom/ViewportArguments.cpp » ('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 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
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-2013 Intel Corporation. All rights reserved. 9 * Copyright (C) 2012-2013 Intel Corporation. All rights reserved.
10 * 10 *
(...skipping 19 matching lines...) Expand all
30 30
31 #include "core/page/PageScaleConstraints.h" 31 #include "core/page/PageScaleConstraints.h"
32 #include "core/platform/graphics/FloatSize.h" 32 #include "core/platform/graphics/FloatSize.h"
33 #include "wtf/Forward.h" 33 #include "wtf/Forward.h"
34 34
35 namespace WebCore { 35 namespace WebCore {
36 36
37 class Document; 37 class Document;
38 38
39 enum ViewportErrorCode { 39 enum ViewportErrorCode {
40 InvalidKeyValuePairSeparatorError,
40 UnrecognizedViewportArgumentKeyError, 41 UnrecognizedViewportArgumentKeyError,
41 UnrecognizedViewportArgumentValueError, 42 UnrecognizedViewportArgumentValueError,
42 TruncatedViewportArgumentValueError, 43 TruncatedViewportArgumentValueError,
43 MaximumScaleTooLargeError, 44 MaximumScaleTooLargeError,
44 TargetDensityDpiUnsupported 45 TargetDensityDpiUnsupported
45 }; 46 };
46 47
47 struct ViewportArguments { 48 struct ViewportArguments {
48 49
49 enum Type { 50 enum Type {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 return !(*this == other); 126 return !(*this == other);
126 } 127 }
127 }; 128 };
128 129
129 void setViewportFeature(const String& keyString, const String& valueString, Docu ment*, void* data); 130 void setViewportFeature(const String& keyString, const String& valueString, Docu ment*, void* data);
130 void reportViewportWarning(Document*, ViewportErrorCode, const String& replaceme nt1, const String& replacement2); 131 void reportViewportWarning(Document*, ViewportErrorCode, const String& replaceme nt1, const String& replacement2);
131 132
132 } // namespace WebCore 133 } // namespace WebCore
133 134
134 #endif // ViewportArguments_h 135 #endif // ViewportArguments_h
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/ViewportArguments.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698