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

Side by Side Diff: chrome/browser/win/chrome_process_finder.cc

Issue 2098713003: Moved a bunch of win-specific files to the new win folder in chrome/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/win/chrome_process_finder.h ('k') | chrome/browser/win/chrome_select_file_dialog_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698