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

Side by Side Diff: chrome/browser/extensions/api/bookmarks/bookmark_api_factory.cc

Issue 11826048: Revert 176015 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/extensions/api/bookmarks/bookmark_api_factory.h" 5 #include "chrome/browser/extensions/api/bookmarks/bookmark_api_factory.h"
6 6
7 #include "chrome/browser/extensions/api/bookmarks/bookmarks_api.h" 7 #include "chrome/browser/extensions/api/bookmarks/bookmark_api.h"
8 #include "chrome/browser/extensions/extension_system_factory.h" 8 #include "chrome/browser/extensions/extension_system_factory.h"
9 #include "chrome/browser/profiles/profile_dependency_manager.h" 9 #include "chrome/browser/profiles/profile_dependency_manager.h"
10 10
11 namespace extensions { 11 namespace extensions {
12 12
13 // static 13 // static
14 BookmarkAPI* BookmarkAPIFactory::GetForProfile( 14 BookmarkAPI* BookmarkAPIFactory::GetForProfile(
15 Profile* profile) { 15 Profile* profile) {
16 return static_cast<BookmarkAPI*>( 16 return static_cast<BookmarkAPI*>(
17 GetInstance()->GetServiceForProfile(profile, true)); 17 GetInstance()->GetServiceForProfile(profile, true));
(...skipping 20 matching lines...) Expand all
38 38
39 bool BookmarkAPIFactory::ServiceIsCreatedWithProfile() const { 39 bool BookmarkAPIFactory::ServiceIsCreatedWithProfile() const {
40 return true; 40 return true;
41 } 41 }
42 42
43 bool BookmarkAPIFactory::ServiceIsNULLWhileTesting() const { 43 bool BookmarkAPIFactory::ServiceIsNULLWhileTesting() const {
44 return true; 44 return true;
45 } 45 }
46 46
47 } // namespace extensions 47 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/bookmarks/bookmark_api.cc ('k') | chrome/browser/extensions/api/bookmarks/bookmarks_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698