| OLD | NEW |
| 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_CRASH_ANDROID_CRASH_HANDLER_H_ | 5 #ifndef CHROMECAST_APP_ANDROID_CRASH_HANDLER_H_ |
| 6 #define CHROMECAST_CRASH_ANDROID_CRASH_HANDLER_H_ | 6 #define CHROMECAST_APP_ANDROID_CRASH_HANDLER_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 | 14 |
| 15 namespace chromecast { | 15 namespace chromecast { |
| 16 class CastCrashReporterClientAndroid; | 16 class CastCrashReporterClientAndroid; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 47 | 47 |
| 48 std::string process_type_; | 48 std::string process_type_; |
| 49 | 49 |
| 50 scoped_ptr<CastCrashReporterClientAndroid> crash_reporter_client_; | 50 scoped_ptr<CastCrashReporterClientAndroid> crash_reporter_client_; |
| 51 | 51 |
| 52 DISALLOW_COPY_AND_ASSIGN(CrashHandler); | 52 DISALLOW_COPY_AND_ASSIGN(CrashHandler); |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 } // namespace chromecast | 55 } // namespace chromecast |
| 56 | 56 |
| 57 #endif // CHROMECAST_CRASH_ANDROID_CRASH_HANDLER_H_ | 57 #endif // CHROMECAST_APP_ANDROID_CRASH_HANDLER_H_ |
| OLD | NEW |