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

Side by Side Diff: chrome/browser/chromeos/display/quirks_client_delegate_impl.h

Issue 1528963002: Quirks Client for downloading and providing display profiles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactor manager and delegate Created 4 years, 10 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 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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698