Skip to content

Commit

Permalink
CEF接口添加条件编译
Browse files Browse the repository at this point in the history
  • Loading branch information
zero-rp committed Oct 20, 2016
1 parent 72ef843 commit a659a74
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions base/command_line.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
#include <ostream>

// #include "base/basictypes.h"
#if (defined ENABLE_CEF) && (ENABLE_CEF == 1)
#include "cef/include/base/cef_string16.h"
#endif
#include "base/file_path.h"
#include "base/logging.h"
// #include "base/strings/string_split.h"
Expand All @@ -26,6 +28,10 @@

namespace base {

typedef wchar_t char16;
typedef std::wstring string16;
typedef std::char_traits<wchar_t> string16_char_traits;

CommandLine* CommandLine::current_process_commandline_ = NULL;

namespace {
Expand Down

0 comments on commit a659a74

Please sign in to comment.