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

Side by Side Diff: Source/bindings/core/v8/Dictionary.h

Issue 373613004: [ServiceWorker] Make Response class better conformance with the spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include <v8.h> 42 #include <v8.h>
43 43
44 namespace WebCore { 44 namespace WebCore {
45 45
46 class ArrayValue; 46 class ArrayValue;
47 class DOMError; 47 class DOMError;
48 class Element; 48 class Element;
49 class LocalDOMWindow; 49 class LocalDOMWindow;
50 class Gamepad; 50 class Gamepad;
51 class MediaStream; 51 class MediaStream;
52 class HeaderMap;
53 class Headers; 52 class Headers;
54 class IDBKeyRange; 53 class IDBKeyRange;
55 class MIDIPort; 54 class MIDIPort;
56 class MediaKeyError; 55 class MediaKeyError;
57 class Notification; 56 class Notification;
58 class SpeechRecognitionResult; 57 class SpeechRecognitionResult;
59 class SpeechRecognitionResultList; 58 class SpeechRecognitionResultList;
60 class Storage; 59 class Storage;
61 class TrackBase; 60 class TrackBase;
62 class VoidCallback; 61 class VoidCallback;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 bool get(const String&, Member<SpeechRecognitionResultList>&) const; 96 bool get(const String&, Member<SpeechRecognitionResultList>&) const;
98 bool get(const String&, Member<Gamepad>&) const; 97 bool get(const String&, Member<Gamepad>&) const;
99 bool get(const String&, Member<MediaStream>&) const; 98 bool get(const String&, Member<MediaStream>&) const;
100 bool get(const String&, RefPtrWillBeMember<EventTarget>&) const; 99 bool get(const String&, RefPtrWillBeMember<EventTarget>&) const;
101 bool get(const String&, HashSet<AtomicString>&) const; 100 bool get(const String&, HashSet<AtomicString>&) const;
102 bool get(const String&, Dictionary&) const; 101 bool get(const String&, Dictionary&) const;
103 bool get(const String&, Vector<String>&) const; 102 bool get(const String&, Vector<String>&) const;
104 bool get(const String&, ArrayValue&) const; 103 bool get(const String&, ArrayValue&) const;
105 bool get(const String&, RefPtrWillBeMember<DOMError>&) const; 104 bool get(const String&, RefPtrWillBeMember<DOMError>&) const;
106 bool get(const String&, v8::Local<v8::Value>&) const; 105 bool get(const String&, v8::Local<v8::Value>&) const;
107 bool get(const String&, RefPtr<HeaderMap>&) const;
108 bool get(const String&, RefPtr<Headers>&) const; 106 bool get(const String&, RefPtr<Headers>&) const;
109 107
110 class ConversionContext { 108 class ConversionContext {
111 public: 109 public:
112 ConversionContext(const String& interfaceName, const String& methodName, ExceptionState& exceptionState) 110 ConversionContext(const String& interfaceName, const String& methodName, ExceptionState& exceptionState)
113 : m_interfaceName(interfaceName) 111 : m_interfaceName(interfaceName)
114 , m_methodName(methodName) 112 , m_methodName(methodName)
115 , m_exceptionState(exceptionState) 113 , m_exceptionState(exceptionState)
116 , m_dirty(true) 114 , m_dirty(true)
117 { 115 {
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value)) 342 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value))
345 return true; 343 return true;
346 344
347 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does n ot have a " + context.typeName() + " type.")); 345 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does n ot have a " + context.typeName() + " type."));
348 return false; 346 return false;
349 } 347 }
350 348
351 } 349 }
352 350
353 #endif // Dictionary_h 351 #endif // Dictionary_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698