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

Unified Diff: third_party/WebKit/Source/core/loader/FrameClientHintsPreferencesContext.h

Issue 2700073002: core/loader: create private directory to store private classes (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/loader/FrameClientHintsPreferencesContext.h
diff --git a/third_party/WebKit/Source/core/loader/FrameClientHintsPreferencesContext.h b/third_party/WebKit/Source/core/loader/FrameClientHintsPreferencesContext.h
deleted file mode 100644
index 0961b85598b40b0f271cd77d2bbb4e6174e72e38..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/loader/FrameClientHintsPreferencesContext.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef FrameClientHintsPreferencesContext_h
-#define FrameClientHintsPreferencesContext_h
-
-#include "core/frame/Frame.h"
-#include "platform/heap/Persistent.h"
-#include "platform/loader/fetch/ClientHintsPreferences.h"
-#include "wtf/Allocator.h"
-
-namespace blink {
-
-class FrameClientHintsPreferencesContext final
- : public ClientHintsPreferences::Context {
- STACK_ALLOCATED();
-
- public:
- explicit FrameClientHintsPreferencesContext(Frame*);
-
- void countClientHintsDPR() override;
- void countClientHintsResourceWidth() override;
- void countClientHintsViewportWidth() override;
-
- private:
- Member<Frame> m_frame;
-};
-
-} // namespace blink
-
-#endif // FrameClientHintsPreferencesContext_h

Powered by Google App Engine
This is Rietveld 408576698