diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 19:20:34 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 19:20:34 +0000 |
commit | 2dec8ec385e65c80571c5723dc572264a934b7c9 (patch) | |
tree | f30b887d1fa77930cc7b9bbc1a0c6a13b7437255 /content/browser/plugin_loader_posix.h | |
parent | 60e28106a326d40d9ba117d18be0abcd954c8832 (diff) | |
download | chromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.zip chromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.tar.gz chromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.tar.bz2 |
Use base namespace for FilePath in content/browser
Review URL: https://codereview.chromium.org/12213066
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181349 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/plugin_loader_posix.h')
-rw-r--r-- | content/browser/plugin_loader_posix.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/plugin_loader_posix.h b/content/browser/plugin_loader_posix.h index dca29ef..a43ef1f 100644 --- a/content/browser/plugin_loader_posix.h +++ b/content/browser/plugin_loader_posix.h @@ -83,11 +83,11 @@ class CONTENT_EXPORT PluginLoaderPosix // Message handlers. void OnPluginLoaded(uint32 index, const webkit::WebPluginInfo& plugin); - void OnPluginLoadFailed(uint32 index, const FilePath& plugin_path); + void OnPluginLoadFailed(uint32 index, const base::FilePath& plugin_path); // Checks if the plugin path is an internal plugin, and, if it is, adds it to // |loaded_plugins_|. - bool MaybeAddInternalPlugin(const FilePath& plugin_path); + bool MaybeAddInternalPlugin(const base::FilePath& plugin_path); // Runs all the registered callbacks on each's target loop if the condition // for ending the load process is done (i.e. the |next_load_index_| is outside @@ -99,7 +99,7 @@ class CONTENT_EXPORT PluginLoaderPosix // A list of paths to plugins which will be loaded by the utility process, in // the order specified by this vector. - std::vector<FilePath> canonical_list_; + std::vector<base::FilePath> canonical_list_; // The index in |canonical_list_| of the plugin that the child process will // attempt to load next. |