0

Drop unused variable in rlz_value_store_chromeos.cc.

../../rlz/chromeos/lib/rlz_value_store_chromeos.cc:24:12: error: unused variable 'kProductChrome' [-Werror,-Wunused-const-variable]
const char kProductChrome[] = "chrome";
           ^
../../rlz/chromeos/lib/rlz_value_store_chromeos.cc:25:12: error: unused variable 'kProductOther' [-Werror,-Wunused-const-variable]
const char kProductOther[] = "other";
           ^
2 errors generated.

BUG=307668
TEST=none
R=thakis@chromium.org

Review URL: https://codereview.chromium.org/33373002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229874 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
xhwang@chromium.org
2013-10-21 19:03:16 +00:00
parent 96a5b66b99
commit 661efff482

@ -20,10 +20,6 @@ namespace rlz_lib {
namespace {
// Product names.
const char kProductChrome[] = "chrome";
const char kProductOther[] = "other";
// Key names.
const char kPingTimeKey[] = "ping_time";
const char kAccessPointKey[] = "access_points";