OLD | NEW |
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 "base/files/file_path.h" | 5 #include "base/files/file_path.h" |
6 #include "base/json/json_string_value_serializer.h" | 6 #include "base/json/json_string_value_serializer.h" |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/string16.h" | 8 #include "base/strings/string16.h" |
9 #include "chrome/browser/extensions/activity_log/activity_database.h" | 9 #include "chrome/browser/extensions/activity_log/activity_database.h" |
10 #include "chrome/browser/extensions/activity_log/api_actions.h" | 10 #include "chrome/browser/extensions/activity_log/api_actions.h" |
11 #include "chrome/browser/extensions/activity_log/blocked_actions.h" | 11 #include "chrome/browser/extensions/activity_log/blocked_actions.h" |
12 #include "chrome/browser/extensions/activity_log/dom_actions.h" | 12 #include "chrome/browser/extensions/activity_log/dom_actions.h" |
13 #include "chrome/browser/extensions/activity_log/fullstream_ui_policy.h" | 13 #include "chrome/browser/extensions/activity_log/fullstream_ui_policy.h" |
14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
15 #include "chrome/common/chrome_constants.h" | 15 #include "chrome/common/chrome_constants.h" |
16 #include "chrome/common/extensions/dom_action_types.h" | 16 #include "chrome/common/extensions/dom_action_types.h" |
17 #include "chrome/common/extensions/extension.h" | 17 #include "chrome/common/extensions/extension.h" |
18 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 break; | 213 break; |
214 } | 214 } |
215 default: | 215 default: |
216 NOTREACHED(); | 216 NOTREACHED(); |
217 } | 217 } |
218 | 218 |
219 ScheduleAndForget(db_, &ActivityDatabase::RecordAction, action); | 219 ScheduleAndForget(db_, &ActivityDatabase::RecordAction, action); |
220 } | 220 } |
221 | 221 |
222 } // namespace extensions | 222 } // namespace extensions |
OLD | NEW |