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

Side by Side Diff: chrome/app/breakpad_win.cc

Issue 3447008: base: Finish moving the SplitString functions from string_util.h to string_split.h (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: chromeos fixes Created 10 years, 3 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
« no previous file with comments | « base/version.cc ('k') | chrome/browser/bookmarks/bookmark_index_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/app/breakpad_win.h" 5 #include "chrome/app/breakpad_win.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 #include <shellapi.h> 8 #include <shellapi.h>
9 #include <tchar.h> 9 #include <tchar.h>
10 10
11 #include <algorithm> 11 #include <algorithm>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/base_switches.h" 14 #include "base/base_switches.h"
15 #include "base/command_line.h" 15 #include "base/command_line.h"
16 #include "base/environment.h" 16 #include "base/environment.h"
17 #include "base/file_util.h" 17 #include "base/file_util.h"
18 #include "base/file_version_info.h" 18 #include "base/file_version_info.h"
19 #include "base/registry.h" 19 #include "base/registry.h"
20 #include "base/scoped_ptr.h" 20 #include "base/scoped_ptr.h"
21 #include "base/string_split.h"
21 #include "base/string_util.h" 22 #include "base/string_util.h"
22 #include "base/utf_string_conversions.h" 23 #include "base/utf_string_conversions.h"
23 #include "base/win_util.h" 24 #include "base/win_util.h"
24 #include "breakpad/src/client/windows/handler/exception_handler.h" 25 #include "breakpad/src/client/windows/handler/exception_handler.h"
25 #include "chrome/app/hard_error_handler_win.h" 26 #include "chrome/app/hard_error_handler_win.h"
26 #include "chrome/common/child_process_logging.h" 27 #include "chrome/common/child_process_logging.h"
27 #include "chrome/common/chrome_switches.h" 28 #include "chrome/common/chrome_switches.h"
28 #include "chrome/common/env_vars.h" 29 #include "chrome/common/env_vars.h"
29 #include "chrome/common/result_codes.h" 30 #include "chrome/common/result_codes.h"
30 #include "chrome/common/policy_constants.h" 31 #include "chrome/common/policy_constants.h"
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 if (QueueUserWorkItem( 566 if (QueueUserWorkItem(
566 &InitCrashReporterThread, 567 &InitCrashReporterThread,
567 info, 568 info,
568 WT_EXECUTELONGFUNCTION) == 0) { 569 WT_EXECUTELONGFUNCTION) == 0) {
569 // We failed to queue to the worker pool, initialize in this thread. 570 // We failed to queue to the worker pool, initialize in this thread.
570 InitCrashReporterThread(info); 571 InitCrashReporterThread(info);
571 } 572 }
572 } 573 }
573 } 574 }
574 } 575 }
OLDNEW
« no previous file with comments | « base/version.cc ('k') | chrome/browser/bookmarks/bookmark_index_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698