forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace Cloud Print WebUI dialog with regular tab
WebUI should not open external pages. New implementation just opens new tab and injects document from attaches WebContents observer. BUG=408684 Review URL: https://codereview.chromium.org/1219513003 Cr-Commit-Position: refs/heads/master@{#336452}
- Loading branch information
1 parent
08141d9
commit 66de8e3
Showing
14 changed files
with
201 additions
and
1,333 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright 2015 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. | ||
|
||
#include "chrome/browser/printing/print_dialog_cloud.h" | ||
|
||
#include "base/logging.h" | ||
|
||
namespace print_dialog_cloud { | ||
|
||
bool CreatePrintDialogFromCommandLine(Profile* profile, | ||
const base::CommandLine& command_line) { | ||
NOTIMPLEMENTED(); | ||
return false; | ||
} | ||
|
||
} // namespace print_dialog_cloud |
Oops, something went wrong.