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

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: rebase 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
« no previous file with comments | « no previous file | chrome/browser/guest_view/app_view/app_view_guest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..d4dba28dd92ec46ad38e1e2771c7246267c5dd5e 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,8 +34,7 @@ class AppViewGuest : public GuestView<AppViewGuest>,
int guest_instance_id);
// ExtensionFunctionDispatcher::Delegate implementation.
- virtual extensions::WindowController* GetExtensionWindowController() const
- OVERRIDE;
+ virtual WindowController* GetExtensionWindowController() const OVERRIDE;
virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
// content::WebContentsObserver implementation.
@@ -64,16 +63,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>
- extension_function_dispatcher_;
+ scoped_ptr<ExtensionFunctionDispatcher> extension_function_dispatcher_;
// This is used to ensure pending tasks will not fire after this object is
// destroyed.
« no previous file with comments | « no previous file | chrome/browser/guest_view/app_view/app_view_guest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698