OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include <stdint.h> |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "base/time.h" |
| 9 #include "chrome/browser/extensions/activity_log/activity_log_policy.h" |
| 10 #include "chrome/browser/profiles/profile.h" |
| 11 #include "chrome/common/extensions/extension.h" |
| 12 #include "googleurl/src/gurl.h" |
| 13 |
| 14 using base::TimeDelta; |
| 15 |
| 16 namespace extensions { |
| 17 |
| 18 ActivityLogPolicy::ActivityLogPolicy(Profile* profile) { |
| 19 CHECK(profile && "Null ptr dereference"); |
| 20 profile_base_path_ = profile->GetPath(); |
| 21 timer_.Start(FROM_HERE, TimeDelta::FromMinutes(2), this, |
| 22 &ActivityLogPolicy::SaveState); |
| 23 } |
| 24 |
| 25 ActivityLogPolicy::~ActivityLogPolicy() { |
| 26 timer_.Stop(); |
| 27 } |
| 28 |
| 29 void ActivityLogPolicy::SetSaveStateOnRequestOnly() { |
| 30 timer_.Stop(); |
| 31 } |
| 32 |
| 33 std::string ActivityLogPolicy::GetKey(KeyType) const { |
| 34 return std::string(); |
| 35 } |
| 36 |
| 37 } // namespace extensions |
OLD | NEW |