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

Unified Diff: components/guest_view/browser/guest_view.h

Issue 1102173002: Move GuestView layer in browser to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test change to build Created 5 years, 8 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: components/guest_view/browser/guest_view.h
diff --git a/extensions/browser/guest_view/guest_view.h b/components/guest_view/browser/guest_view.h
similarity index 84%
rename from extensions/browser/guest_view/guest_view.h
rename to components/guest_view/browser/guest_view.h
index eaa5602e190292934cf2b2e834de9abba9b449db..fca1fbe995cd701d088f458fff9dd14846aba13a 100644
--- a/extensions/browser/guest_view/guest_view.h
+++ b/components/guest_view/browser/guest_view.h
@@ -2,14 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef EXTENSIONS_BROWSER_GUEST_VIEW_GUEST_VIEW_H_
-#define EXTENSIONS_BROWSER_GUEST_VIEW_GUEST_VIEW_H_
+#ifndef COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_H_
+#define COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_H_
+#include "components/guest_view/browser/guest_view_base.h"
+#include "components/guest_view/browser/guest_view_manager.h"
#include "content/public/browser/render_frame_host.h"
-#include "extensions/browser/guest_view/guest_view_base.h"
-#include "extensions/browser/guest_view/guest_view_manager.h"
-namespace extensions {
+namespace guestview {
lazyboy 2015/04/30 19:31:07 based on the directory, this should be "namespace
Fady Samuel 2015/04/30 23:26:04 Done.
// A GuestView is the templated base class for out-of-process frames in the
// chrome layer. GuestView is templated on its derived type to allow for type-
@@ -65,6 +65,6 @@ class GuestView : public GuestViewBase {
DISALLOW_COPY_AND_ASSIGN(GuestView);
};
-} // namespace extensions
+} // namespace guestview
-#endif // EXTENSIONS_BROWSER_GUEST_VIEW_GUEST_VIEW_H_
+#endif // COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_H_

Powered by Google App Engine
This is Rietveld 408576698