| Index: chrome/browser/geolocation/wifi_data_provider_common.h
|
| ===================================================================
|
| --- chrome/browser/geolocation/wifi_data_provider_common.h (revision 37850)
|
| +++ chrome/browser/geolocation/wifi_data_provider_common.h (working copy)
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <assert.h>
|
|
|
| +#include "base/logging.h"
|
| #include "base/string16.h"
|
| #include "base/basictypes.h"
|
|
|
| @@ -38,7 +39,7 @@
|
| } else if (polling_interval_ == DEFAULT_INTERVAL) {
|
| polling_interval_ = NO_CHANGE_INTERVAL;
|
| } else {
|
| - assert(polling_interval_ == NO_CHANGE_INTERVAL ||
|
| + DCHECK(polling_interval_ == NO_CHANGE_INTERVAL ||
|
| polling_interval_ == TWO_NO_CHANGE_INTERVAL);
|
| polling_interval_ = TWO_NO_CHANGE_INTERVAL;
|
| }
|
|
|