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

Unified Diff: chrome/browser/extensions/activity_log/activity_action_constants.cc

Issue 19690003: Extension activity log database refactoring (step 3) (Closed) Base URL: http://git.chromium.org/chromium/src.git@refactor2
Patch Set: Do not set bad BlockedChromeActivityDetail::Reason values Created 7 years, 5 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
Index: chrome/browser/extensions/activity_log/activity_action_constants.cc
diff --git a/chrome/browser/extensions/activity_log/activity_action_constants.cc b/chrome/browser/extensions/activity_log/activity_action_constants.cc
new file mode 100644
index 0000000000000000000000000000000000000000..fe422cee0bf2ad70f8ac9b0c5475d60987bd6059
--- /dev/null
+++ b/chrome/browser/extensions/activity_log/activity_action_constants.cc
@@ -0,0 +1,17 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// String constants used when logging data in the extension activity log.
+
+#include "chrome/browser/extensions/activity_log/activity_action_constants.h"
+
+namespace activity_log_constants {
+
+// Keys that may be used in the "other" attribute of an Action.
+const char kActionBlockedReason[] = "blocked_reason";
+const char kActionDomVerb[] = "dom_verb";
+const char kActionExtra[] = "extra";
+const char kActionWebRequest[] = "web_request";
+
+} // namespace activity_log_constants

Powered by Google App Engine
This is Rietveld 408576698