diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-21 19:03:16 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-21 19:03:16 +0000 |
commit | 661efff48213dd3c79fc47d1f77df32124e49c5a (patch) | |
tree | 11bde3c48efad0de2431a7035ec1e3714ad8181b /rlz/chromeos | |
parent | 96a5b66b99f76523883d59deaa9e1fac0ce41223 (diff) | |
download | chromium_src-661efff48213dd3c79fc47d1f77df32124e49c5a.zip chromium_src-661efff48213dd3c79fc47d1f77df32124e49c5a.tar.gz chromium_src-661efff48213dd3c79fc47d1f77df32124e49c5a.tar.bz2 |
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
Diffstat (limited to 'rlz/chromeos')
-rw-r--r-- | rlz/chromeos/lib/rlz_value_store_chromeos.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/rlz/chromeos/lib/rlz_value_store_chromeos.cc b/rlz/chromeos/lib/rlz_value_store_chromeos.cc index ad1407a..a636863 100644 --- a/rlz/chromeos/lib/rlz_value_store_chromeos.cc +++ b/rlz/chromeos/lib/rlz_value_store_chromeos.cc @@ -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"; |