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

Side by Side Diff: chrome/browser/chromeos/cros/fake/fake_library_loader.h

Issue 2847072: Green Tree Tactical Force: Revert skrul's bad commits (probably a git-cl bug). (Closed)
Patch Set: Created 10 years, 5 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
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_LIBRARY_LOADER_H_
6 #define CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_LIBRARY_LOADER_H_
7
8 #include <string>
9
10 #include "chrome/browser/chromeos/cros/cros_library_loader.h"
11
12 namespace chromeos {
13
14 // Fake for libcros library loader.
15 class FakeLibraryLoader : public LibraryLoader {
16 public:
17 FakeLibraryLoader() {}
18 virtual ~FakeLibraryLoader() {}
19 virtual bool Load(std::string* load_error_string) {
20 return true;
21 }
22 };
23
24 } // namespace chromeos
25
26 #endif // CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_LIBRARY_LOADER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros/fake/fake_keyboard_library.h ('k') | chrome/browser/chromeos/cros/fake/fake_login_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698