Mac: Fix compile error (issue #630).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1121 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2013-03-04 22:57:27 +00:00
parent 944658ccbb
commit a6fb4d52d1
2 changed files with 128 additions and 130 deletions

View File

@ -12,12 +12,6 @@
#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h"
struct CefSchemeRegistrarImpl::SchemeInfo {
std::string scheme_name;
bool is_local;
bool is_display_isolated;
};
CefSchemeRegistrarImpl::CefSchemeRegistrarImpl()
: supported_thread_id_(base::PlatformThread::CurrentId()) {
}

View File

@ -38,7 +38,11 @@ class CefSchemeRegistrarImpl : public CefSchemeRegistrar {
base::PlatformThreadId supported_thread_id_;
// Custom schemes that need to be registered with WebKit.
struct SchemeInfo;
struct SchemeInfo {
std::string scheme_name;
bool is_local;
bool is_display_isolated;
};
typedef std::list<SchemeInfo> SchemeInfoList;
SchemeInfoList scheme_info_list_;