| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 void timeStamp([Default=NullString] optional DOMString title); | 53 void timeStamp([Default=NullString] optional DOMString title); |
| 54 | 54 |
| 55 [CallWith=ScriptState] void timeline([Default=NullString] optional DOMString
title); | 55 [CallWith=ScriptState] void timeline([Default=NullString] optional DOMString
title); |
| 56 [CallWith=ScriptState] void timelineEnd([Default=NullString] optional DOMStr
ing title); | 56 [CallWith=ScriptState] void timelineEnd([Default=NullString] optional DOMStr
ing title); |
| 57 | 57 |
| 58 [CallWith=ScriptArguments&ScriptState] void group(); | 58 [CallWith=ScriptArguments&ScriptState] void group(); |
| 59 [CallWith=ScriptArguments&ScriptState] void groupCollapsed(); | 59 [CallWith=ScriptArguments&ScriptState] void groupCollapsed(); |
| 60 void groupEnd(); | 60 void groupEnd(); |
| 61 [CallWith=ScriptArguments&ScriptState] void clear(); | 61 [CallWith=ScriptArguments&ScriptState] void clear(); |
| 62 }; | 62 }; |
| OLD | NEW |