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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorInstrumentationCustomInl.h

Issue 2321503002: (Re-)introduce AncestorThrottle to handle 'X-Frame-Options'. (Closed)
Patch Set: Rebase after a month... Created 4 years, 1 month 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 29 matching lines...) Expand all
40 CORE_EXPORT bool isDebuggerPaused(LocalFrame*); 40 CORE_EXPORT bool isDebuggerPaused(LocalFrame*);
41 CORE_EXPORT void asyncTaskScheduled(ExecutionContext*, 41 CORE_EXPORT void asyncTaskScheduled(ExecutionContext*,
42 const String& name, 42 const String& name,
43 void*); 43 void*);
44 CORE_EXPORT void asyncTaskScheduled(ExecutionContext*, 44 CORE_EXPORT void asyncTaskScheduled(ExecutionContext*,
45 const String& name, 45 const String& name,
46 void*, 46 void*,
47 bool recurring); 47 bool recurring);
48 CORE_EXPORT void asyncTaskCanceled(ExecutionContext*, void*); 48 CORE_EXPORT void asyncTaskCanceled(ExecutionContext*, void*);
49 CORE_EXPORT void allAsyncTasksCanceled(ExecutionContext*); 49 CORE_EXPORT void allAsyncTasksCanceled(ExecutionContext*);
50 CORE_EXPORT void continueAfterXFrameOptionsDenied(LocalFrame*, 50 CORE_EXPORT void canceledAfterReceivedResourceResponse(LocalFrame*,
51 DocumentLoader*, 51 DocumentLoader*,
52 unsigned long identifier, 52 unsigned long identifier,
53 const ResourceResponse&, 53 const ResourceResponse&,
54 Resource*); 54 Resource*);
55 CORE_EXPORT void continueWithPolicyIgnore(LocalFrame*, 55 CORE_EXPORT void continueWithPolicyIgnore(LocalFrame*,
56 DocumentLoader*, 56 DocumentLoader*,
57 unsigned long identifier, 57 unsigned long identifier,
58 const ResourceResponse&, 58 const ResourceResponse&,
59 Resource*); 59 Resource*);
60 60
61 } // namespace InspectorInstrumentation 61 } // namespace InspectorInstrumentation
62 62
63 } // namespace blink 63 } // namespace blink
64 64
65 #endif // InspectorInstrumentationCustom_inl_h 65 #endif // InspectorInstrumentationCustom_inl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698