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

Side by Side Diff: extensions/common/switches.cc

Issue 2156763003: Extend the webRequest.onCompleted event details object with TLS/SSL information Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Consistently use key constants for dict fields and simplify validation error reporting Created 3 years, 10 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 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 #include "extensions/common/switches.h" 5 #include "extensions/common/switches.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 // Pass launch source to platform apps. 110 // Pass launch source to platform apps.
111 const char kTraceAppSource[] = "enable-trace-app-source"; 111 const char kTraceAppSource[] = "enable-trace-app-source";
112 112
113 // Enables the use of C++-based extension bindings (instead of JS generation). 113 // Enables the use of C++-based extension bindings (instead of JS generation).
114 const char kNativeCrxBindings[] = "native-crx-bindings"; 114 const char kNativeCrxBindings[] = "native-crx-bindings";
115 115
116 // Enable package hash check: the .crx file sha256 hash sum should be equal to 116 // Enable package hash check: the .crx file sha256 hash sum should be equal to
117 // the one received from update manifest. 117 // the one received from update manifest.
118 const char kEnableCrxHashCheck[] = "enable-crx-hash-check"; 118 const char kEnableCrxHashCheck[] = "enable-crx-hash-check";
119 119
120 // Enable adding SSL/TLS information to the webrequest.onCompleted details
121 // object if underlying transport supports it.
122 const char kWebrequestSSLInfo[] = "webrequest-ssl-info";
123
120 } // namespace switches 124 } // namespace switches
121 125
122 } // namespace extensions 126 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698