OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_ACTIONS_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_ACTIONS_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_ACTIONS_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_ACTIONS_H_ |
7 | 7 |
8 #include "chrome/browser/extensions/activity_log/activity_actions.h" | 8 #include "chrome/browser/extensions/activity_log/activity_actions.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 | 10 |
(...skipping 27 matching lines...) Expand all Loading... |
38 const base::Time& time, | 38 const base::Time& time, |
39 const Type type, // e.g. "CALL" | 39 const Type type, // e.g. "CALL" |
40 const std::string& api_call, // full method name | 40 const std::string& api_call, // full method name |
41 const std::string& args, // the argument list | 41 const std::string& args, // the argument list |
42 const std::string& extra); // any extra logging info | 42 const std::string& extra); // any extra logging info |
43 | 43 |
44 // Create a new APIAction from a database row. | 44 // Create a new APIAction from a database row. |
45 explicit APIAction(const sql::Statement& s); | 45 explicit APIAction(const sql::Statement& s); |
46 | 46 |
47 // Record the action in the database. | 47 // Record the action in the database. |
48 virtual void Record(sql::Connection* db) OVERRIDE; | 48 virtual bool Record(sql::Connection* db) OVERRIDE; |
49 | 49 |
50 virtual scoped_ptr<api::activity_log_private::ExtensionActivity> | 50 virtual scoped_ptr<api::activity_log_private::ExtensionActivity> |
51 ConvertToExtensionActivity() OVERRIDE; | 51 ConvertToExtensionActivity() OVERRIDE; |
52 | 52 |
53 // Used to associate tab IDs with URLs. It will swap out the int in args with | 53 // Used to associate tab IDs with URLs. It will swap out the int in args with |
54 // a URL as a string. If the tab is in incognito mode, we leave it alone as | 54 // a URL as a string. If the tab is in incognito mode, we leave it alone as |
55 // the original int. There is a small chance that the URL translation could | 55 // the original int. There is a small chance that the URL translation could |
56 // be wrong, if the tab has already been navigated by the time of invocation. | 56 // be wrong, if the tab has already been navigated by the time of invocation. |
57 static void LookupTabId(const std::string& api_call, | 57 static void LookupTabId(const std::string& api_call, |
58 ListValue* args, | 58 ListValue* args, |
(...skipping 13 matching lines...) Expand all Loading... |
72 | 72 |
73 private: | 73 private: |
74 Type type_; | 74 Type type_; |
75 std::string api_call_; | 75 std::string api_call_; |
76 std::string args_; | 76 std::string args_; |
77 std::string extra_; | 77 std::string extra_; |
78 | 78 |
79 DISALLOW_COPY_AND_ASSIGN(APIAction); | 79 DISALLOW_COPY_AND_ASSIGN(APIAction); |
80 }; | 80 }; |
81 | 81 |
82 } // namespace | 82 } // namespace extensions |
83 | 83 |
84 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_ACTIONS_H_ | 84 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_ACTIONS_H_ |
OLD | NEW |