Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
|
oshima
2016/01/28 20:16:30
2016
same for other files
Greg Levin
2016/02/01 23:17:43
Done.
| |
| 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_DISPLAY_QUIRKS_CLIENT_DELEGATE_IMPL_H_ | |
| 6 #define CHROME_BROWSER_CHROMEOS_DISPLAY_QUIRKS_CLIENT_DELEGATE_IMPL_H_ | |
| 7 | |
| 8 #include "components/quirks_client/quirks_client.h" | |
| 9 | |
| 10 namespace quirks_client { | |
| 11 | |
| 12 // Working implementation of QuirksClientManager::Delegate for access to chrome- | |
| 13 // restricted parts. | |
| 14 class QuirksClientDelegateImpl : public QuirksClientManager::Delegate { | |
| 15 public: | |
| 16 ~QuirksClientDelegateImpl() override {} | |
|
oshima
2016/01/28 20:16:30
= default;
Greg Levin
2016/02/01 23:17:43
Done.
| |
| 17 | |
| 18 // QuirksClientManager::Delegate implementation. | |
| 19 std::string api_key_quirks() override; | |
|
oshima
2016/01/28 20:16:30
GetApiKeyQuirks()
Greg Levin
2016/02/01 23:17:43
Done.
| |
| 20 base::FilePath GetDisplayProfileDirectory() override; | |
| 21 int GetDaysSinceOobe() override; | |
|
oshima
2016/01/28 20:16:30
can these be const? (just a q)
Greg Levin
2016/02/01 23:17:43
They can be (and now are). Is this preferable, ev
oshima
2016/02/02 18:29:13
Yes, in general (having member or not is implement
| |
| 22 }; | |
|
oshima
2016/01/28 20:16:30
private:
DISALLOW_COPY_AND_ASSIGN
Greg Levin
2016/02/01 23:17:43
Done.
| |
| 23 | |
| 24 } // namespace quirks_client | |
| 25 | |
| 26 #endif // CHROME_BROWSER_CHROMEOS_DISPLAY_QUIRKS_CLIENT_DELEGATE_IMPL_H_ | |
| OLD | NEW |