| Index: chrome/browser/browser_about_handler.cc
|
| ===================================================================
|
| --- chrome/browser/browser_about_handler.cc (revision 30247)
|
| +++ chrome/browser/browser_about_handler.cc (working copy)
|
| @@ -61,9 +61,7 @@
|
| #include "third_party/tcmalloc/tcmalloc/src/google/malloc_extension.h"
|
| #endif
|
|
|
| -#if defined(BROWSER_SYNC)
|
| using sync_api::SyncManager;
|
| -#endif
|
|
|
| using base::Time;
|
| using base::TimeDelta;
|
| @@ -469,7 +467,6 @@
|
| return output;
|
| }
|
|
|
| -#if defined(BROWSER_SYNC)
|
| static void AddBoolSyncDetail(ListValue* details, const std::wstring& stat_name,
|
| bool stat_value) {
|
| DictionaryValue* val = new DictionaryValue;
|
| @@ -560,7 +557,6 @@
|
| return jstemplate_builder::GetTemplateHtml(
|
| sync_html, &strings , "t" /* template root node id */);
|
| }
|
| -#endif // defined(BROWSER_SYNC)
|
|
|
| // AboutSource -----------------------------------------------------------------
|
|
|
| @@ -624,9 +620,7 @@
|
| } else if (path == kTermsPath) {
|
| response = AboutTerms();
|
| } else if (path == kSyncPath) {
|
| -#if defined(BROWSER_SYNC)
|
| response = AboutSync();
|
| -#endif
|
| }
|
|
|
| FinishDataRequest(response, request_id);
|
|
|