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 #ifndef COMPONENTS_CRASH_APP_CRASH_REPORTER_CLIENT_H_ | 5 #ifndef COMPONENTS_CRASH_CONTENT_APP_CRASH_REPORTER_CLIENT_H_ |
6 #define COMPONENTS_CRASH_APP_CRASH_REPORTER_CLIENT_H_ | 6 #define COMPONENTS_CRASH_CONTENT_APP_CRASH_REPORTER_CLIENT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 | 12 |
13 namespace base { | 13 namespace base { |
14 class FilePath; | 14 class FilePath; |
15 } | 15 } |
16 | 16 |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 // the standard minidump uploader (which depends on the user consent). | 148 // the standard minidump uploader (which depends on the user consent). |
149 virtual bool ShouldEnableBreakpadMicrodumps(); | 149 virtual bool ShouldEnableBreakpadMicrodumps(); |
150 #endif | 150 #endif |
151 | 151 |
152 // Returns true if breakpad should run in the given process type. | 152 // Returns true if breakpad should run in the given process type. |
153 virtual bool EnableBreakpadForProcess(const std::string& process_type); | 153 virtual bool EnableBreakpadForProcess(const std::string& process_type); |
154 }; | 154 }; |
155 | 155 |
156 } // namespace crash_reporter | 156 } // namespace crash_reporter |
157 | 157 |
158 #endif // COMPONENTS_CRASH_APP_CRASH_REPORTER_CLIENT_H_ | 158 #endif // COMPONENTS_CRASH_CONTENT_APP_CRASH_REPORTER_CLIENT_H_ |
OLD | NEW |