| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // String constants used when logging data in the extension activity log. |
| 6 |
| 7 #include "chrome/browser/extensions/activity_log/activity_action_constants.h" |
| 8 |
| 9 namespace activity_log_constants { |
| 10 |
| 11 // Keys that may be used in the "other" attribute of an Action. |
| 12 const char kActionBlockedReason[] = "blocked_reason"; |
| 13 const char kActionDomVerb[] = "dom_verb"; |
| 14 const char kActionExtra[] = "extra"; |
| 15 const char kActionWebRequest[] = "web_request"; |
| 16 |
| 17 } // namespace activity_log_constants |
| OLD | NEW |