| Index: core/page/Console.idl
|
| diff --git a/core/page/Console.idl b/core/page/Console.idl
|
| index d5373cacad3fc615ab64983f18c77620f5e8cbd8..de3bc19a1a493bbd753c010ad323d9facdbbbd72 100644
|
| --- a/core/page/Console.idl
|
| +++ b/core/page/Console.idl
|
| @@ -1,5 +1,6 @@
|
| /*
|
| * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
|
| + * Copyright (C) 2013 Google Inc. All rights reserved.
|
| *
|
| * Redistribution and use in source and binary forms, with or without
|
| * modification, are permitted provided that the following conditions
|
| @@ -28,32 +29,6 @@
|
|
|
| [
|
| NoInterfaceObject
|
| -] interface Console {
|
| -
|
| - [CallWith=ScriptArguments&ScriptState] void debug();
|
| - [CallWith=ScriptArguments&ScriptState] void error();
|
| - [CallWith=ScriptArguments&ScriptState] void info();
|
| - [CallWith=ScriptArguments&ScriptState] void log();
|
| - [CallWith=ScriptArguments&ScriptState] void warn();
|
| - [CallWith=ScriptArguments&ScriptState] void dir();
|
| - [CallWith=ScriptArguments&ScriptState] void dirxml();
|
| - [CallWith=ScriptArguments&ScriptState] void table();
|
| - [CallWith=ScriptArguments&ScriptState] void trace();
|
| - [CallWith=ScriptArguments&ScriptState, ImplementedAs=assertCondition] void assert([Default=Undefined] optional boolean condition);
|
| - [CallWith=ScriptArguments&ScriptState] void count();
|
| - [DeprecateAs=ConsoleMarkTimeline, CallWith=ScriptArguments] void markTimeline();
|
| -
|
| - [CallWith=ScriptState] void profile([Default=NullString] optional DOMString title);
|
| - [CallWith=ScriptState] void profileEnd([Default=NullString] optional DOMString title);
|
| -
|
| - void time([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString title);
|
| - [CallWith=ScriptState] void timeEnd([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString title);
|
| - [CallWith=ScriptArguments] void timeStamp();
|
| - [CallWith=ScriptArguments&ScriptState] void group();
|
| - [CallWith=ScriptArguments&ScriptState] void groupCollapsed();
|
| - void groupEnd();
|
| - [CallWith=ScriptArguments&ScriptState] void clear();
|
| -
|
| +] interface Console : ConsoleBase {
|
| readonly attribute MemoryInfo memory;
|
| };
|
| -
|
|
|