diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 19:38:22 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 19:38:22 +0000 |
commit | 48329f9991ee2acf562abdd28e41c5597dc2c066 (patch) | |
tree | 1dc266596a66273d47890d113c1494b0c574d0e0 /chrome/service/service_utility_process_host.h | |
parent | 34f75094b3a50f58a57b5676a160e0b96db3bd8a (diff) | |
download | chromium_src-48329f9991ee2acf562abdd28e41c5597dc2c066.zip chromium_src-48329f9991ee2acf562abdd28e41c5597dc2c066.tar.gz chromium_src-48329f9991ee2acf562abdd28e41c5597dc2c066.tar.bz2 |
Coverity: Pass parameters by reference.
CID=6820,8735,11066,11067,11070,11071,11072,11073,11215,11216,11217,11927,12403
BUG=none
TEST=none
R=csilv@chromium.org
Review URL: http://codereview.chromium.org/6730040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79602 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service/service_utility_process_host.h')
-rw-r--r-- | chrome/service/service_utility_process_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/service/service_utility_process_host.h b/chrome/service/service_utility_process_host.h index d9d9907..b3802f9 100644 --- a/chrome/service/service_utility_process_host.h +++ b/chrome/service/service_utility_process_host.h @@ -130,7 +130,7 @@ class ServiceUtilityProcessHost : public ServiceChildProcessHost { bool MessageForClient(const IPC::Message& message); #if defined(OS_WIN) // This hack is Windows-specific. - void OnPreCacheFont(LOGFONT font); + void OnPreCacheFont(const LOGFONT& font); #endif // defined(OS_WIN) // A pointer to our client interface, who will be informed of progress. |