| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 static bool canAccessInspectedWindow(ScriptState*); | 86 static bool canAccessInspectedWindow(ScriptState*); |
| 87 static bool canAccessInspectedWorkerGlobalScope(ScriptState*); | 87 static bool canAccessInspectedWorkerGlobalScope(ScriptState*); |
| 88 | 88 |
| 89 int m_nextInjectedScriptId; | 89 int m_nextInjectedScriptId; |
| 90 typedef HashMap<int, InjectedScript> IdToInjectedScriptMap; | 90 typedef HashMap<int, InjectedScript> IdToInjectedScriptMap; |
| 91 IdToInjectedScriptMap m_idToInjectedScript; | 91 IdToInjectedScriptMap m_idToInjectedScript; |
| 92 RefPtrWillBeMember<InjectedScriptHost> m_injectedScriptHost; | 92 RefPtrWillBeMember<InjectedScriptHost> m_injectedScriptHost; |
| 93 InspectedStateAccessCheck m_inspectedStateAccessCheck; | 93 InspectedStateAccessCheck m_inspectedStateAccessCheck; |
| 94 typedef HashMap<RefPtr<ScriptState>, int> ScriptStateToId; | 94 typedef HashMap<RefPtr<ScriptState>, int> ScriptStateToId; |
| 95 ScriptStateToId m_scriptStateToId; | 95 ScriptStateToId m_scriptStateToId; |
| 96 HashSet<OwnPtr<CallbackData> > m_callbackDataSet; | 96 HashSet<OwnPtr<CallbackData>> m_callbackDataSet; |
| 97 bool m_customObjectFormatterEnabled; | 97 bool m_customObjectFormatterEnabled; |
| 98 }; | 98 }; |
| 99 | 99 |
| 100 } // namespace blink | 100 } // namespace blink |
| 101 | 101 |
| 102 #endif // !defined(InjectedScriptManager_h) | 102 #endif // !defined(InjectedScriptManager_h) |
| OLD | NEW |