diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-02 03:22:35 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-02 03:22:35 +0000 |
commit | aab98a5a0e9dc69bfea24ad796807e67abe53cea (patch) | |
tree | 14987b854a05368ffd9cb6b03a4adb57577db366 /chrome/common/child_process_logging_mac.mm | |
parent | 647eb03cbf4fa882d17abc4ee24abc3478f4dc52 (diff) | |
download | chromium_src-aab98a5a0e9dc69bfea24ad796807e67abe53cea.zip chromium_src-aab98a5a0e9dc69bfea24ad796807e67abe53cea.tar.gz chromium_src-aab98a5a0e9dc69bfea24ad796807e67abe53cea.tar.bz2 |
Ok, here is a different approach at this change.
Instead of storing pointers into a vector, store offsets. That
way, if the vector resizes, we should still be OK.
Also, add a DCHECK that we only enter this method once, which
is my current assumption.
Review URL: http://codereview.chromium.org/457028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33541 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/child_process_logging_mac.mm')
-rw-r--r-- | chrome/common/child_process_logging_mac.mm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/common/child_process_logging_mac.mm b/chrome/common/child_process_logging_mac.mm index 9e89c01..5d46e01 100644 --- a/chrome/common/child_process_logging_mac.mm +++ b/chrome/common/child_process_logging_mac.mm @@ -91,4 +91,9 @@ void SetClientId(const std::string& client_id) { std::wstring wstr = ASCIIToWide(str); GoogleUpdateSettings::SetMetricsId(wstr); } + +void SetActiveExtensions(const std::vector<std::string>& extension_ids) { + // TODO(port) +} + } // namespace child_process_logging |