diff options
Diffstat (limited to 'chrome/browser/ui/cocoa/download')
-rw-r--r-- | chrome/browser/ui/cocoa/download/background_theme.h | 2 | ||||
-rw-r--r-- | chrome/browser/ui/cocoa/download/background_theme.mm | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/ui/cocoa/download/background_theme.h b/chrome/browser/ui/cocoa/download/background_theme.h index bb21de2..e9d4bd7 100644 --- a/chrome/browser/ui/cocoa/download/background_theme.h +++ b/chrome/browser/ui/cocoa/download/background_theme.h @@ -22,7 +22,7 @@ class BackgroundTheme : public ui::ThemeProvider { virtual bool GetDisplayProperty(int id, int* result) const OVERRIDE; virtual bool ShouldUseNativeFrame() const OVERRIDE; virtual bool HasCustomImage(int id) const OVERRIDE; - virtual RefCountedMemory* GetRawData(int id) const OVERRIDE; + virtual base::RefCountedMemory* GetRawData(int id) const OVERRIDE; virtual NSImage* GetNSImageNamed(int id, bool allow_default) const OVERRIDE; virtual NSColor* GetNSImageColorNamed(int id, bool allow_default) const OVERRIDE; diff --git a/chrome/browser/ui/cocoa/download/background_theme.mm b/chrome/browser/ui/cocoa/download/background_theme.mm index 1becbab..af4dc7c 100644 --- a/chrome/browser/ui/cocoa/download/background_theme.mm +++ b/chrome/browser/ui/cocoa/download/background_theme.mm @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -47,7 +47,7 @@ bool BackgroundTheme::HasCustomImage(int id) const { return false; } -RefCountedMemory* BackgroundTheme::GetRawData(int id) const { +base::RefCountedMemory* BackgroundTheme::GetRawData(int id) const { return NULL; } |