Add new devtools messages in Chrome 35.

This commit is contained in:
Cheng Zhao 2014-07-08 15:58:38 +08:00
parent 7a196933bb
commit 0a7b1fdd87
4 changed files with 43 additions and 0 deletions

View file

@ -155,6 +155,9 @@ void InspectableWebContentsImpl::SetContentsResizingStrategy(
view_->SetContentsResizingStrategy(contents_resizing_strategy_);
}
void InspectableWebContentsImpl::InspectElementCompleted() {
}
void InspectableWebContentsImpl::MoveWindow(int x, int y) {
}
@ -187,6 +190,10 @@ void InspectableWebContentsImpl::RemoveFileSystem(
const std::string& file_system_path) {
}
void InspectableWebContentsImpl::UpgradeDraggedFileSystemPermissions(
const std::string& file_system_url) {
}
void InspectableWebContentsImpl::IndexPath(
int request_id, const std::string& file_system_path) {
}
@ -200,6 +207,15 @@ void InspectableWebContentsImpl::SearchInPath(
const std::string& query) {
}
void InspectableWebContentsImpl::ZoomIn() {
}
void InspectableWebContentsImpl::ZoomOut() {
}
void InspectableWebContentsImpl::ResetZoom() {
}
void InspectableWebContentsImpl::DispatchOnEmbedder(
const std::string& message) {
embedder_message_dispatcher_->Dispatch(message);