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

Side by Side Diff: chromecast/app/android/cast_crash_reporter_client_android.h

Issue 1315303004: Turn components/crash into a layered component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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 | « chromecast/app/BUILD.gn ('k') | chromecast/app/android/crash_handler.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ 5 #ifndef CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_
6 #define CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ 6 #define CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "components/crash/app/crash_reporter_client.h" 9 #include "components/crash/content/app/crash_reporter_client.h"
10 10
11 namespace chromecast { 11 namespace chromecast {
12 12
13 class CastCrashReporterClientAndroid 13 class CastCrashReporterClientAndroid
14 : public crash_reporter::CrashReporterClient { 14 : public crash_reporter::CrashReporterClient {
15 public: 15 public:
16 explicit CastCrashReporterClientAndroid(const std::string& process_type); 16 explicit CastCrashReporterClientAndroid(const std::string& process_type);
17 ~CastCrashReporterClientAndroid() override; 17 ~CastCrashReporterClientAndroid() override;
18 18
19 static bool GetCrashDumpLocation(const std::string& process_type, 19 static bool GetCrashDumpLocation(const std::string& process_type,
(...skipping 11 matching lines...) Expand all
31 31
32 private: 32 private:
33 std::string process_type_; 33 std::string process_type_;
34 34
35 DISALLOW_COPY_AND_ASSIGN(CastCrashReporterClientAndroid); 35 DISALLOW_COPY_AND_ASSIGN(CastCrashReporterClientAndroid);
36 }; 36 };
37 37
38 } // namespace chromecast 38 } // namespace chromecast
39 39
40 #endif // CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ 40 #endif // CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_
OLDNEW
« no previous file with comments | « chromecast/app/BUILD.gn ('k') | chromecast/app/android/crash_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698