diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-08 22:53:57 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-08 22:53:57 +0000 |
commit | fe19854c04872937cd20a500bbe3069ef32d7cad (patch) | |
tree | a650c78f47908ec6ea5108200db192314b8a97e9 /chrome | |
parent | 629494519869e2e9b0f06f3a459acc7805e90e25 (diff) | |
download | chromium_src-fe19854c04872937cd20a500bbe3069ef32d7cad.zip chromium_src-fe19854c04872937cd20a500bbe3069ef32d7cad.tar.gz chromium_src-fe19854c04872937cd20a500bbe3069ef32d7cad.tar.bz2 |
Get the Mac build compiling while we figure out how SetActiveUrl should be implemented on Mac.
Review URL: http://codereview.chromium.org/149362
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20198 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/common/child_process_logging_mac.mm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/common/child_process_logging_mac.mm b/chrome/common/child_process_logging_mac.mm index a05b79d..c07dbe5 100644 --- a/chrome/common/child_process_logging_mac.mm +++ b/chrome/common/child_process_logging_mac.mm @@ -8,7 +8,7 @@ #include "base/string_util.h" #include "googleurl/src/gurl.h" -#import "chrome/app/breakpad_mac.h" +//#import "chrome/app/breakpad_mac.h" namespace child_process_logging { @@ -60,12 +60,14 @@ void SetActiveURLImpl(const GURL& url, } void SetActiveURL(const GURL& url) { +/* // If Breakpad isn't initialized then bail. if (IsCrashReporterDisabled()) { return; } SetActiveURLImpl(url, SetCrashKeyValue, ClearCrashKeyValue); +*/ } } // namespace child_process_logging |