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

Unified Diff: chrome/browser/guest_view/app_view/app_view_guest.h

Issue 456983003: Remove unnecessary "extensions::" prefix in guest_view/web_view/app_view directories. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update web_view_guest Created 6 years, 4 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: chrome/browser/guest_view/app_view/app_view_guest.h
diff --git a/chrome/browser/guest_view/app_view/app_view_guest.h b/chrome/browser/guest_view/app_view/app_view_guest.h
index 5643d21062df19a492802dbc6d31a8759aaf587a..c32f28294b89b7859e2c382b65ce6e82179a352f 100644
--- a/chrome/browser/guest_view/app_view/app_view_guest.h
+++ b/chrome/browser/guest_view/app_view/app_view_guest.h
@@ -18,7 +18,7 @@ class ExtensionHost;
// associated with a particular embedder WebContents. This happens on calls to
// the connect API.
class AppViewGuest : public GuestView<AppViewGuest>,
- public extensions::ExtensionFunctionDispatcher::Delegate {
+ public ExtensionFunctionDispatcher::Delegate {
public:
static const char Type[];
@@ -34,7 +34,7 @@ class AppViewGuest : public GuestView<AppViewGuest>,
int guest_instance_id);
// ExtensionFunctionDispatcher::Delegate implementation.
- virtual extensions::WindowController* GetExtensionWindowController() const
+ virtual WindowController* GetExtensionWindowController() const
OVERRIDE;
virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
@@ -64,15 +64,15 @@ class AppViewGuest : public GuestView<AppViewGuest>,
void OnRequest(const ExtensionHostMsg_Request_Params& params);
void CompleteCreateWebContents(const GURL& url,
- const extensions::Extension* guest_extension,
+ const Extension* guest_extension,
const WebContentsCreatedCallback& callback);
void LaunchAppAndFireEvent(const WebContentsCreatedCallback& callback,
- extensions::ExtensionHost* extension_host);
+ ExtensionHost* extension_host);
GURL url_;
std::string guest_extension_id_;
- scoped_ptr<extensions::ExtensionFunctionDispatcher>
+ scoped_ptr<ExtensionFunctionDispatcher>
extension_function_dispatcher_;
Fady Samuel 2014/08/12 21:25:30 This can probably now go on the same line?
Xi Han 2014/08/12 21:53:48 Done.
// This is used to ensure pending tasks will not fire after this object is

Powered by Google App Engine
This is Rietveld 408576698