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

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: Remove hacks for clean, but non-working, draft Created 4 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
OLDNEW
(Empty)
1 // Copyright 2015 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_DISPLAY_QUIRKS_CLIENT_DELEGATE_IMPL_H_
6 #define CHROME_BROWSER_CHROMEOS_DISPLAY_QUIRKS_CLIENT_DELEGATE_IMPL_H_
7
8 #include "base/macros.h"
9 #include "components/quirks_client/quirks_client.h"
10
11 namespace quirks_client {
12
13 // Working implementation of QuirksClientDelegate for access to chrome-
14 // restricted parts.
15 class QuirksClientDelegateImpl : public QuirksClientDelegate {
16 public:
17 QuirksClientDelegateImpl(base::MessageLoopForUI* message_loop_ui,
18 base::SequencedWorkerPool* blocking_pool,
19 PrefService* local_state,
20 net::URLRequestContextGetter* url_context_getter);
21 ~QuirksClientDelegateImpl() override;
22
23 // QuirksClientBrowserDelegate implementation.
24 std::string api_key_quirks() override;
25 base::FilePath GetDisplayProfileDirectory() override;
26
27 private:
28 DISALLOW_COPY_AND_ASSIGN(QuirksClientDelegateImpl);
29 };
30
31 } // namespace quirks_client
32
33 #endif // CHROME_BROWSER_CHROMEOS_DISPLAY_QUIRKS_CLIENT_DELEGATE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698