mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Add developer tools support (issue #127).
- Send title change notifications generated after page content is done loading. - Restore windows and bring to the front in BrowserWebViewDelegate::show(). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@168 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
28
libcef/browser_devtools_callargs.h
Normal file
28
libcef/browser_devtools_callargs.h
Normal file
@@ -0,0 +1,28 @@
|
||||
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef _BROWSER_DEVTOOLS_CALLARGS_H
|
||||
#define _BROWSER_DEVTOOLS_CALLARGS_H
|
||||
|
||||
#include "base/basictypes.h"
|
||||
|
||||
#include "third_party/WebKit/WebKit/chromium/public/WebString.h"
|
||||
|
||||
class BrowserDevToolsCallArgs {
|
||||
public:
|
||||
explicit BrowserDevToolsCallArgs(const WebKit::WebString& data);
|
||||
|
||||
BrowserDevToolsCallArgs(const BrowserDevToolsCallArgs& args);
|
||||
|
||||
~BrowserDevToolsCallArgs();
|
||||
|
||||
static int calls_count() { return calls_count_; }
|
||||
|
||||
WebKit::WebString data_;
|
||||
|
||||
private:
|
||||
static int calls_count_;
|
||||
};
|
||||
|
||||
#endif // _BROWSER_DEVTOOLS_CALLARGS_H
|
Reference in New Issue
Block a user