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

Unified Diff: content/browser/compositor/overlay_candidate_validator_ozone.h

Issue 312393002: ozone: Move the factory interfaces into a common target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge-r278697 Created 6 years, 6 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: content/browser/compositor/overlay_candidate_validator_ozone.h
diff --git a/content/browser/compositor/overlay_candidate_validator_ozone.h b/content/browser/compositor/overlay_candidate_validator_ozone.h
index c46eaba4ceddc036d9e26023859da8333157381a..8fb690b5196c66233564662d5cdf6f74f3086827 100644
--- a/content/browser/compositor/overlay_candidate_validator_ozone.h
+++ b/content/browser/compositor/overlay_candidate_validator_ozone.h
@@ -10,7 +10,7 @@
#include "content/common/content_export.h"
#include "ui/gfx/native_widget_types.h"
-namespace gfx {
+namespace ui {
class OverlayCandidatesOzone;
}
@@ -21,7 +21,7 @@ class CONTENT_EXPORT OverlayCandidateValidatorOzone
public:
OverlayCandidateValidatorOzone(
gfx::AcceleratedWidget widget,
- gfx::OverlayCandidatesOzone* overlay_candidates);
+ ui::OverlayCandidatesOzone* overlay_candidates);
virtual ~OverlayCandidateValidatorOzone();
// cc::OverlayCandidateValidator implementation.
@@ -29,7 +29,7 @@ class CONTENT_EXPORT OverlayCandidateValidatorOzone
private:
gfx::AcceleratedWidget widget_;
- gfx::OverlayCandidatesOzone* overlay_candidates_;
+ ui::OverlayCandidatesOzone* overlay_candidates_;
DISALLOW_COPY_AND_ASSIGN(OverlayCandidateValidatorOzone);
};

Powered by Google App Engine
This is Rietveld 408576698