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

Side by Side Diff: android_webview/common/crash_reporter/crash_keys.h

Issue 2928823004: Fix header guard and namespace in android_webview (Closed)
Patch Set: Fix header guard and namespace in android_webview Created 3 years, 6 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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 ANDROID_WEBVIEW_COMMON_CRASH_KEYS_H_ 5 #ifndef ANDROID_WEBVIEW_COMMON_CRASH_REPORTER_CRASH_KEYS_H_
6 #define ANDROID_WEBVIEW_COMMON_CRASH_KEYS_H_ 6 #define ANDROID_WEBVIEW_COMMON_CRASH_REPORTER_CRASH_KEYS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <string> 9 #include <string>
10 10
11 namespace android_webview { 11 namespace android_webview {
12 namespace crash_keys { 12 namespace crash_keys {
13 13
14 // Registers all of the potential crash keys that can be sent to the crash 14 // Registers all of the potential crash keys that can be sent to the crash
15 // reporting server. Returns the size of the union of all keys. 15 // reporting server. Returns the size of the union of all keys.
16 size_t RegisterWebViewCrashKeys(); 16 size_t RegisterWebViewCrashKeys();
(...skipping 13 matching lines...) Expand all
30 30
31 // Application information. 31 // Application information.
32 extern const char kAppPackageName[]; 32 extern const char kAppPackageName[];
33 extern const char kAppPackageVersionCode[]; 33 extern const char kAppPackageVersionCode[];
34 34
35 extern const char kAndroidSdkInt[]; 35 extern const char kAndroidSdkInt[];
36 36
37 } // namespace crash_keys 37 } // namespace crash_keys
38 } // namespace android_webview 38 } // namespace android_webview
39 39
40 #endif // ANDROID_WEBVIEW_COMMON_CRASH_KEYS_H_ 40 #endif // ANDROID_WEBVIEW_COMMON_CRASH_REPORTER_CRASH_KEYS_H_
OLDNEW
« no previous file with comments | « android_webview/common/crash_reporter/aw_microdump_crash_reporter.h ('k') | android_webview/lib/webview_jni_onload.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698