diff options
Diffstat (limited to 'ui/base/resource/data_pack_literal.cc')
-rw-r--r-- | ui/base/resource/data_pack_literal.cc | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/ui/base/resource/data_pack_literal.cc b/ui/base/resource/data_pack_literal.cc index 05e610b..510d07a 100644 --- a/ui/base/resource/data_pack_literal.cc +++ b/ui/base/resource/data_pack_literal.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -21,23 +21,4 @@ extern const char kSamplePakContents[] = { extern const size_t kSamplePakSize = sizeof(kSamplePakContents); -extern const char kSamplePakContents2x[] = { - 0x04, 0x00, 0x00, 0x00, // header(version - 0x01, 0x00, 0x00, 0x00, // no. entries - 0x01, // encoding) - 0x04, 0x00, 0x15, 0x00, 0x00, 0x00, // index entry 4 - 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, // extra entry for the size of last - 't', 'h', 'i', 's', ' ', 'i', 's', ' ', 'i', 'd', ' ', '4', ' ', '2', 'x' -}; - -extern const size_t kSamplePakSize2x = sizeof(kSamplePakContents2x); - -extern const char kEmptyPakContents[] = { - 0x04, 0x00, 0x00, 0x00, // header(version - 0x00, 0x00, 0x00, 0x00, // no. entries - 0x01 -}; - -extern const size_t kEmptyPakSize = sizeof(kEmptyPakContents); - } // namespace ui |