diff options
author | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-30 05:06:30 +0000 |
---|---|---|
committer | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-30 05:06:30 +0000 |
commit | 48844c643cca3d7d21043e46c228585e68618e31 (patch) | |
tree | 21f9cc162549c4728e5d3358fc4c2ca940baa3ba | |
parent | 3bfd16aeb7e834499c23ce53698d4b6f114cdcfc (diff) | |
download | chromium_src-48844c643cca3d7d21043e46c228585e68618e31.zip chromium_src-48844c643cca3d7d21043e46c228585e68618e31.tar.gz chromium_src-48844c643cca3d7d21043e46c228585e68618e31.tar.bz2 |
Revert 33256 - Fix build break from r33255.
There are thousands of new crashes with reivison 33256 and 33255, so i'm
reverting. the crashes are in chrome_2610000!child_process_logging::SetActiveURL
TBR=erikkay@chromium.org
TBR=aa@chromium.org
Review URL: http://codereview.chromium.org/448005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33268 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/common/child_process_logging_linux.cc | 2 | ||||
-rw-r--r-- | chrome/common/child_process_logging_mac.mm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/child_process_logging_linux.cc b/chrome/common/child_process_logging_linux.cc index bbe18fd..0b54010 100644 --- a/chrome/common/child_process_logging_linux.cc +++ b/chrome/common/child_process_logging_linux.cc @@ -32,7 +32,7 @@ void SetClientId(const std::string& client_id) { GoogleUpdateSettings::SetMetricsId(wstr); } -void SetActiveExtensions(const std::vector<std::string>& extension_ids) { +void SetActiveExtensions(const std::vector<std::string> extension_ids) { // TODO(port) } } // namespace child_process_logging diff --git a/chrome/common/child_process_logging_mac.mm b/chrome/common/child_process_logging_mac.mm index 5d46e01..8ed617d 100644 --- a/chrome/common/child_process_logging_mac.mm +++ b/chrome/common/child_process_logging_mac.mm @@ -92,7 +92,7 @@ void SetClientId(const std::string& client_id) { GoogleUpdateSettings::SetMetricsId(wstr); } -void SetActiveExtensions(const std::vector<std::string>& extension_ids) { +void SetActiveExtensions(const std::vector<std::string> extension_ids) { // TODO(port) } |