Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(11)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: gfx/gfx_module.cc
Issue
6254004
:
Move more web widgets painting from webkit to chrome. (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set:
Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
chrome/browser/browser_main.cc
chrome/browser/chromeos/native_theme_chromeos.h
chrome/browser/chromeos/native_theme_chromeos.cc
chrome/browser/renderer_preferences_util.cc
chrome/chrome.gyp
chrome/chrome_common.gypi
chrome/common/gfx_resource_provider.h
chrome/common/gfx_resource_provider.cc
chrome/renderer/renderer_main.cc
gfx/color_utils.h
gfx/color_utils.cc
gfx/gfx.gyp
gfx/gfx_module.h
gfx/gfx_module.cc
gfx/gfx_resources.grd
gfx/native_theme_linux.h
gfx/native_theme_linux.cc
gfx/rect.h
gfx/rect.cc
webkit/glue/webthemeengine_impl_linux.cc
webkit/support/platform_support_gtk.cc
webkit/tools/test_shell/test_shell.h
webkit/tools/test_shell/test_shell.gypi
webkit/tools/test_shell/test_shell_gtk.cc
webkit/tools/test_shell/test_shell_mac.mm
webkit/tools/test_shell/test_shell_main.cc
webkit/tools/test_shell/test_shell_win.cc
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« gfx/color_utils.cc
('K') |
« gfx/gfx_module.h
('k') |
gfx/gfx_resources.grd »
('j') |
gfx/native_theme_linux.h »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
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
3
// found in the LICENSE file.
4
5
#include "gfx/gfx_module.h"
6
7
namespace gfx {
8
9
static GfxModule::ResourceProvider resource_provider = NULL;
10
11
// static
12
void GfxModule::SetResourceProvider(ResourceProvider func) {
13
resource_provider = func;
14
}
15
16
// static
17
base::StringPiece GfxModule::GetResource(int key) {
18
return resource_provider ? resource_provider(key) : base::StringPiece();
19
}
20
21
} // namespace gfx
OLD
NEW
« gfx/color_utils.cc
('K') |
« gfx/gfx_module.h
('k') |
gfx/gfx_resources.grd »
('j') |
gfx/native_theme_linux.h »
('J')
Issue 6254004: Move more web widgets painting from webkit to chrome. (Closed)
Created 9 years, 11 months ago by xiyuan
Modified 9 years, 7 months ago
Reviewers: DaveMoore, tony
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 54
This is Rietveld
408576698