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

Side by Side Diff: chrome/browser/resources/net_internals/http_throttling_view.html

Issue 10185003: Remove net-internals page for throttling, introduce flag for extension devs instead. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix JavaScript presubmit. Created 8 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <div id=http-throttling-view-tab-content class=content-box>
2 <p>
3 In order to prevent Distributed Denial of Service (DDoS) attacks from
4 being perpetrated by web pages or extensions that run within Chrome, the
5 HTTP throttling mechanism keeps track of errors requesting a given URL
6 (minus the query parameters), and after a few 5xx errors in a row, starts
7 exponentially increasing an interval during which requests to the
8 given URL are disallowed.
9 </p><p>
10 This feature is currently configured to affect only requests
11 initiated by origins with one of the following schemas:
12 <ul>
13 <li> chrome-extension:// </li>
14 </ul>
15 </p><p>
16 The feature is on by default (for requests originating from the
17 schemas listed above). You may disable the feature below if desired.
18 Please let us know if the feature is causing problems for your web
19 site. More details and contact information at
20 <a href="http://dev.chromium.org/throttling" target=_blank>http://dev.chromium .org/throttling</a>.
21 </p>
22 <p><input id=http-throttling-view-enable-checkbox type=checkbox />
23 <label for=http-throttling-view-enable-checkbox>
24 Throttle HTTP requests if the server has been overloaded or encountered an e rror.
25 </label>
26 </p>
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698