Commit a0879ee5 authored by ager@chromium.org's avatar ager@chromium.org

Oilpan: Fix oilpan build after gamepad changes.

TBR=haraken@chromium.org,oilpan-reviews@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/207763002

git-svn-id: svn://svn.chromium.org/blink/trunk@169724 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent e45f44cb
...@@ -510,7 +510,7 @@ bool Dictionary::get(const String& key, RefPtrWillBeRawPtr<SpeechRecognitionResu ...@@ -510,7 +510,7 @@ bool Dictionary::get(const String& key, RefPtrWillBeRawPtr<SpeechRecognitionResu
return true; return true;
} }
bool Dictionary::get(const String& key, RefPtrWillBeRawPtr<Gamepad>& value) const bool Dictionary::get(const String& key, RefPtrWillBeMember<Gamepad>& value) const
{ {
v8::Local<v8::Value> v8Value; v8::Local<v8::Value> v8Value;
if (!getKey(key, v8Value)) if (!getKey(key, v8Value))
......
...@@ -92,7 +92,7 @@ public: ...@@ -92,7 +92,7 @@ public:
bool get(const String&, RefPtr<SpeechRecognitionError>&) const; bool get(const String&, RefPtr<SpeechRecognitionError>&) const;
bool get(const String&, RefPtrWillBeRawPtr<SpeechRecognitionResult>&) const; bool get(const String&, RefPtrWillBeRawPtr<SpeechRecognitionResult>&) const;
bool get(const String&, RefPtrWillBeRawPtr<SpeechRecognitionResultList>&) const; bool get(const String&, RefPtrWillBeRawPtr<SpeechRecognitionResultList>&) const;
bool get(const String&, RefPtrWillBeRawPtr<Gamepad>&) const; bool get(const String&, RefPtrWillBeMember<Gamepad>&) const;
bool get(const String&, RefPtr<MediaStream>&) const; bool get(const String&, RefPtr<MediaStream>&) const;
bool get(const String&, RefPtr<EventTarget>&) const; bool get(const String&, RefPtr<EventTarget>&) const;
bool get(const String&, HashSet<AtomicString>&) const; bool get(const String&, HashSet<AtomicString>&) const;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment