Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: ui/base/resource/resource_bundle_dummy.cc

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/base/resource/resource_bundle.cc ('k') | ui/base/resource/resource_bundle_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "ui/base/resource/resource_bundle.h" 5 #include "ui/base/resource/resource_bundle.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/synchronization/lock.h" 10 #include "base/synchronization/lock.h"
11 #include "gfx/font.h" 11 #include "ui/gfx/font.h"
12 #include "gfx/platform_font_win.h" 12 #include "ui/gfx/platform_font_win.h"
13 13
14 // NOTE(gregoryd): This is a hack to avoid creating more nacl_win64-specific 14 // NOTE(gregoryd): This is a hack to avoid creating more nacl_win64-specific
15 // files. The font members of ResourceBundle are never initialized in our code 15 // files. The font members of ResourceBundle are never initialized in our code
16 // so this destructor is never called. 16 // so this destructor is never called.
17 namespace gfx { 17 namespace gfx {
18 Font::~Font() { 18 Font::~Font() {
19 NOTREACHED(); 19 NOTREACHED();
20 } 20 }
21 PlatformFontWin::HFontRef::~HFontRef() { 21 PlatformFontWin::HFontRef::~HFontRef() {
22 NOTREACHED(); 22 NOTREACHED();
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 ResourceBundle::~ResourceBundle() { 59 ResourceBundle::~ResourceBundle() {
60 } 60 }
61 61
62 62
63 string16 ResourceBundle::GetLocalizedString(int message_id) { 63 string16 ResourceBundle::GetLocalizedString(int message_id) {
64 return string16(); 64 return string16();
65 } 65 }
66 66
67 } // namespace ui 67 } // namespace ui
OLDNEW
« no previous file with comments | « ui/base/resource/resource_bundle.cc ('k') | ui/base/resource/resource_bundle_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698