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

Unified Diff: android_webview/browser/aw_contents_client_bridge_base.cc

Issue 1370603002: Make some global pointers const void* const. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | android_webview/browser/aw_request_interceptor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/aw_contents_client_bridge_base.cc
diff --git a/android_webview/browser/aw_contents_client_bridge_base.cc b/android_webview/browser/aw_contents_client_bridge_base.cc
index 4888a1ee5ff762e13f34aebf0a28e2b140183dd4..d684d40bbc2a8fd83e5c59aa3f80a9285ab5a216 100644
--- a/android_webview/browser/aw_contents_client_bridge_base.cc
+++ b/android_webview/browser/aw_contents_client_bridge_base.cc
@@ -15,7 +15,7 @@ namespace android_webview {
namespace {
-const void* kAwContentsClientBridgeBase = &kAwContentsClientBridgeBase;
+const void* const kAwContentsClientBridgeBase = &kAwContentsClientBridgeBase;
// This class is invented so that the UserData registry that we inject the
// AwContentsClientBridgeBase object does not own and destroy it.
@@ -37,7 +37,7 @@ class UserData : public base::SupportsUserData::Data {
DISALLOW_COPY_AND_ASSIGN(UserData);
};
-} // namespace
+} // namespace
// static
void AwContentsClientBridgeBase::Associate(
« no previous file with comments | « no previous file | android_webview/browser/aw_request_interceptor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698