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

Side by Side Diff: Source/web/WebMIDIPermissionRequest.cpp

Issue 18563008: Web MIDI: add assign() and equals() to WebMIDIPermissionRequest (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 WebMIDIPermissionRequest::WebMIDIPermissionRequest(const PassRefPtr<WebCore::MID IAccess>& midi) 43 WebMIDIPermissionRequest::WebMIDIPermissionRequest(const PassRefPtr<WebCore::MID IAccess>& midi)
44 : m_private(midi) 44 : m_private(midi)
45 { 45 {
46 } 46 }
47 47
48 WebMIDIPermissionRequest::WebMIDIPermissionRequest(WebCore::MIDIAccess* midi) 48 WebMIDIPermissionRequest::WebMIDIPermissionRequest(WebCore::MIDIAccess* midi)
49 : m_private(midi) 49 : m_private(midi)
50 { 50 {
51 } 51 }
52 52
53 void WebMIDIPermissionRequest::assign(const WebMIDIPermissionRequest& other)
54 {
55 m_private = other.m_private;
56 }
57
58 bool WebMIDIPermissionRequest::equals(const WebMIDIPermissionRequest& n) const
59 {
60 return (m_private.get() == n.m_private.get());
abarth-chromium 2013/07/12 23:00:34 No need for the outer ( )
Takashi Toyoshima 2013/07/14 08:33:29 Done. I also fixed similar nits here and there.
61 }
62
53 WebSecurityOrigin WebMIDIPermissionRequest::securityOrigin() const 63 WebSecurityOrigin WebMIDIPermissionRequest::securityOrigin() const
54 { 64 {
55 return WebSecurityOrigin(m_private->scriptExecutionContext()->securityOrigin ()); 65 return WebSecurityOrigin(m_private->scriptExecutionContext()->securityOrigin ());
56 } 66 }
57 67
58 void WebMIDIPermissionRequest::setIsAllowed(bool allowed) 68 void WebMIDIPermissionRequest::setIsAllowed(bool allowed)
59 { 69 {
60 m_private->enableSysEx(allowed); 70 m_private->enableSysEx(allowed);
61 } 71 }
62 72
63 } // namespace WebKit 73 } // namespace WebKit
OLDNEW
« no previous file with comments | « no previous file | public/web/WebMIDIPermissionRequest.h » ('j') | public/web/WebMIDIPermissionRequest.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698