OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "app/resource_bundle.h" | 5 #include "app/resource_bundle.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 | 8 |
9 #include "base/lock.h" | 9 #include "base/lock.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 : lock_(new Lock), | 53 : lock_(new Lock), |
54 resources_data_(NULL), | 54 resources_data_(NULL), |
55 locale_resources_data_(NULL) { | 55 locale_resources_data_(NULL) { |
56 } | 56 } |
57 | 57 |
58 ResourceBundle::~ResourceBundle() { | 58 ResourceBundle::~ResourceBundle() { |
59 } | 59 } |
60 | 60 |
61 | 61 |
62 string16 ResourceBundle::GetLocalizedString(int message_id) { | 62 string16 ResourceBundle::GetLocalizedString(int message_id) { |
63 return std::wstring(); | 63 return string16(); |
64 } | 64 } |
OLD | NEW |