HomeSort by relevance Sort by last modified time
    Searched defs:shell_window (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/app_window/
app_window_apitest.cc 6 #include "apps/shell_window.h"
38 virtual void OnShellWindowAdded(ShellWindow* shell_window) OVERRIDE {}
39 virtual void OnShellWindowIconChanged(ShellWindow* shell_window) OVERRIDE {
42 virtual void OnShellWindowRemoved(ShellWindow* shell_window) OVERRIDE {
119 ShellWindow* shell_window = GetFirstShellWindow(); local
120 ASSERT_TRUE(shell_window);
122 shell_window->app_icon_url().spec().find("icon.png"));
app_window_api.cc 9 #include "apps/shell_window.h"
297 ShellWindow* shell_window = new ShellWindow(profile(), local
300 shell_window->Init(url,
301 new apps::AppWindowContents(shell_window),
305 shell_window->Fullscreen();
308 shell_window->web_contents()->GetRenderViewHost();
317 result->Set("id", base::Value::CreateStringValue(shell_window->window_key()));
318 SetCreateResultFromShellWindow(shell_window, result);
  /external/chromium_org/chrome/browser/ui/ash/
chrome_shell_delegate_browsertest.cc 8 #include "apps/shell_window.h"
177 apps::ShellWindow* shell_window = CreateShellWindow(extension); local
178 apps::NativeAppWindow* app_window = shell_window->GetBaseWindow();
179 ASSERT_TRUE(shell_window->GetBaseWindow()->IsActive());
190 CloseShellWindow(shell_window);
chrome_shell_delegate.cc 8 #include "apps/shell_window.h"
190 apps::ShellWindow* shell_window = apps::ShellWindowRegistry:: local
192 if (shell_window) {
194 shell_window->Restore();
196 shell_window->Fullscreen();
  /external/chromium_org/chrome/browser/ui/ash/launcher/
shell_window_launcher_item_controller.cc 8 #include "apps/shell_window.h"
31 bool operator()(ShellWindow* shell_window) const {
32 return shell_window->GetNativeWindow() == window_;
56 ShellWindow* shell_window,
58 if (shell_window->window_type_is_panel() && type() != TYPE_APP_PANEL)
60 shell_windows_.push_front(shell_window);
61 observed_windows_.Add(shell_window->GetNativeWindow());
89 ShellWindow* shell_window = shell_windows_.front(); local
90 if (shell_window->web_contents()) {
91 string16 title = shell_window->web_contents()->GetTitle()
178 ShellWindow* shell_window = *iter; local
203 ShellWindow* shell_window = *iter; local
    [all...]
chrome_launcher_controller_browsertest.cc 8 #include "apps/shell_window.h"
506 ShellWindow* shell_window = CreateShellWindow(extension); local
510 shell_window->GetBaseWindow()->Minimize();
513 shell_window->GetNativeWindow()->SetProperty(
517 shell_window->GetBaseWindow()->Activate();
519 EXPECT_FALSE(shell_window->GetNativeWindow()->GetProperty(
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
select_file_dialog_extension.cc 8 #include "apps/shell_window.h"
265 ShellWindow* shell_window = NULL; local
273 shell_window = apps::ShellWindowRegistry::
278 if (shell_window) {
279 if (shell_window->window_type_is_panel()) {
283 base_window = shell_window->GetBaseWindow();
284 web_contents = shell_window->web_contents();
  /external/chromium_org/apps/
shell_window_registry.cc 6 #include "apps/shell_window.h"
30 apps::ShellWindow* shell_window = local
32 if (!shell_window)
35 if (shell_window->window_key().empty())
36 return shell_window->web_contents()->GetURL().possibly_invalid_spec();
38 std::string key = shell_window->extension()->id();
40 key += shell_window->window_key();
67 void ShellWindowRegistry::AddShellWindow(ShellWindow* shell_window) {
68 BringToFront(shell_window);
69 FOR_EACH_OBSERVER(Observer, observers_, OnShellWindowAdded(shell_window));
114 ShellWindow* shell_window = *(i++); local
190 ShellWindow* shell_window = registry->GetShellWindowForNativeWindow(window); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/developer_private/
developer_private_api.cc 10 #include "apps/shell_window.h"
573 ShellWindow* shell_window = registry->GetShellWindowForRenderViewHost( local
575 prompt_.reset(new ExtensionInstallPrompt(shell_window->web_contents()));
662 ShellWindow* shell_window = registry->GetShellWindowForRenderViewHost( local
664 if (!shell_window) {
669 service, shell_window->web_contents(), extension);
790 ShellWindow* shell_window = registry->GetShellWindowForRenderViewHost( local
792 if (!shell_window) {
800 new EntryPicker(this, shell_window->web_contents(), picker_type,
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/file_system/
file_system_api.cc 8 #include "apps/shell_window.h"
747 ShellWindow* shell_window = registry->GetShellWindowForRenderViewHost( local
749 if (!shell_window) {
754 web_contents = shell_window->web_contents();
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/tabs/
tabs_api.cc 11 #include "apps/shell_window.h"
590 ShellWindow* shell_window = new ShellWindow( local
593 AshPanelContents* ash_panel_contents = new AshPanelContents(shell_window);
594 shell_window->Init(urls[0], ash_panel_contents, create_params);
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_impl.cc 12 #include "apps/shell_window.h"
199 apps::ShellWindow* shell_window = local
202 return shell_window->GetBaseWindow();
    [all...]

Completed in 3362 milliseconds