OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/nacl/browser/nacl_browser.h" | 5 #include "components/nacl/browser/nacl_browser.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/files/file_proxy.h" | 8 #include "base/files/file_proxy.h" |
9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
10 #include "base/location.h" | 10 #include "base/location.h" |
11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram_macros.h" |
12 #include "base/path_service.h" | 12 #include "base/path_service.h" |
13 #include "base/pickle.h" | 13 #include "base/pickle.h" |
14 #include "base/rand_util.h" | 14 #include "base/rand_util.h" |
15 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
16 #include "base/thread_task_runner_handle.h" | 16 #include "base/thread_task_runner_handle.h" |
17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
18 #include "base/win/windows_version.h" | 18 #include "base/win/windows_version.h" |
19 #include "build/build_config.h" | 19 #include "build/build_config.h" |
20 #include "content/public/browser/browser_thread.h" | 20 #include "content/public/browser/browser_thread.h" |
21 #include "url/gurl.h" | 21 #include "url/gurl.h" |
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 bool NaClBrowser::IsThrottled() { | 561 bool NaClBrowser::IsThrottled() { |
562 DCHECK_CURRENTLY_ON(content::BrowserThread::IO); | 562 DCHECK_CURRENTLY_ON(content::BrowserThread::IO); |
563 if (crash_times_.size() != kMaxCrashesPerInterval) { | 563 if (crash_times_.size() != kMaxCrashesPerInterval) { |
564 return false; | 564 return false; |
565 } | 565 } |
566 base::TimeDelta delta = base::Time::Now() - crash_times_.front(); | 566 base::TimeDelta delta = base::Time::Now() - crash_times_.front(); |
567 return delta.InSeconds() <= kCrashesIntervalInSeconds; | 567 return delta.InSeconds() <= kCrashesIntervalInSeconds; |
568 } | 568 } |
569 | 569 |
570 } // namespace nacl | 570 } // namespace nacl |
OLD | NEW |