OLD | NEW |
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 "chrome/browser/icon_loader.h" | 5 #include "chrome/browser/icon_loader.h" |
6 | 6 |
| 7 IconLoader::IconLoader(const IconGroupID& group, |
| 8 IconSize size, |
| 9 Delegate* delegate) { |
| 10 // TODO(saintlou): stubs for now. |
| 11 NOTIMPLEMENTED(); |
| 12 } |
| 13 |
| 14 void IconLoader::Start() { |
| 15 // TODO(saintlou): stubs for now. |
| 16 NOTIMPLEMENTED(); |
| 17 } |
| 18 |
| 19 IconLoader::~IconLoader() { |
| 20 // TODO(saintlou): stubs for now. |
| 21 NOTIMPLEMENTED(); |
| 22 } |
| 23 |
7 void IconLoader::ReadIcon() { | 24 void IconLoader::ReadIcon() { |
8 // TODO(saintlou): stubs for now. | 25 // TODO(saintlou): stubs for now. |
9 NOTIMPLEMENTED(); | 26 NOTIMPLEMENTED(); |
10 } | 27 } |
11 | 28 |
12 void IconLoader::ParseIcon() { | 29 void IconLoader::NotifyDelegate() { |
13 // TODO(saintlou): stubs for now. | 30 // TODO(saintlou): stubs for now. |
14 NOTIMPLEMENTED(); | 31 NOTIMPLEMENTED(); |
15 } | 32 } |
OLD | NEW |