| 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 "chrome/browser/chrome_process_finder_win.h" | 5 #include "chrome/browser/win/chrome_process_finder.h" |
| 6 | 6 |
| 7 #include <shellapi.h> | 7 #include <shellapi.h> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/files/file_util.h" | 12 #include "base/files/file_util.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/process/process.h" | 14 #include "base/process/process.h" |
| 15 #include "base/process/process_info.h" | 15 #include "base/process/process_info.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 } | 88 } |
| 89 | 89 |
| 90 base::TimeDelta SetNotificationTimeoutForTesting(base::TimeDelta new_timeout) { | 90 base::TimeDelta SetNotificationTimeoutForTesting(base::TimeDelta new_timeout) { |
| 91 base::TimeDelta old_timeout = | 91 base::TimeDelta old_timeout = |
| 92 base::TimeDelta::FromMilliseconds(timeout_in_milliseconds); | 92 base::TimeDelta::FromMilliseconds(timeout_in_milliseconds); |
| 93 timeout_in_milliseconds = new_timeout.InMilliseconds(); | 93 timeout_in_milliseconds = new_timeout.InMilliseconds(); |
| 94 return old_timeout; | 94 return old_timeout; |
| 95 } | 95 } |
| 96 | 96 |
| 97 } // namespace chrome | 97 } // namespace chrome |
| OLD | NEW |