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

Side by Side Diff: Source/core/inspector/ScriptArguments.h

Issue 211023002: DevTools: Remove event Console.messageRepeatCountUpdated (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 static PassRefPtr<ScriptArguments> create(ScriptState*, Vector<ScriptValue>& arguments); 46 static PassRefPtr<ScriptArguments> create(ScriptState*, Vector<ScriptValue>& arguments);
47 47
48 ~ScriptArguments(); 48 ~ScriptArguments();
49 49
50 const ScriptValue& argumentAt(size_t) const; 50 const ScriptValue& argumentAt(size_t) const;
51 size_t argumentCount() const { return m_arguments.size(); } 51 size_t argumentCount() const { return m_arguments.size(); }
52 52
53 ScriptState* globalState() const; 53 ScriptState* globalState() const;
54 54
55 bool getFirstArgumentAsString(WTF::String& result, bool checkForNullOrUndefi ned = false); 55 bool getFirstArgumentAsString(WTF::String& result, bool checkForNullOrUndefi ned = false);
56 bool isEqual(ScriptArguments*) const;
57 56
58 private: 57 private:
59 ScriptArguments(ScriptState*, Vector<ScriptValue>& arguments); 58 ScriptArguments(ScriptState*, Vector<ScriptValue>& arguments);
60 59
61 ScriptStateProtectedPtr m_scriptState; 60 ScriptStateProtectedPtr m_scriptState;
62 Vector<ScriptValue> m_arguments; 61 Vector<ScriptValue> m_arguments;
63 }; 62 };
64 63
65 } // namespace WebCore 64 } // namespace WebCore
66 65
67 #endif // ScriptArguments_h 66 #endif // ScriptArguments_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698