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

Side by Side Diff: chrome/browser/icon_loader_aura.cc

Issue 8028012: More Aura fixes, renaming and stubbing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 9 years, 3 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
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 "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 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/browser/ui/views/tabs/dragged_tab_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698